From f895be346f138d7f0f9afba73e7b8fec519d7b46 Mon Sep 17 00:00:00 2001 From: Martin Nyaga Date: Sun, 23 Sep 2018 20:40:59 +0100 Subject: [PATCH] Fix markdown formatting. The markdown text was incorrectly formatted, and caused text to appear inside a code block. --- docs/interaction.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/interaction.md b/docs/interaction.md index 1415414de..d46b09e28 100644 --- a/docs/interaction.md +++ b/docs/interaction.md @@ -461,7 +461,8 @@ function LineChart({data, index, handleMouseOver}) { stroke="white" /> } ); -}``` +} +``` More often than not, you want to be able to handle an action that happened in one of the charts and reflect it in different parts of your app, i.e. outside the chart.