Skip to content

Instantly share code, notes, and snippets.

@JamesZoft
Created January 14, 2020 14:56
Show Gist options
  • Save JamesZoft/50ddbc1a4cad8ea0ad91798bec300985 to your computer and use it in GitHub Desktop.
Save JamesZoft/50ddbc1a4cad8ea0ad91798bec300985 to your computer and use it in GitHub Desktop.
const Chart = () => {
return (
<ResponsiveContainer>
<Chart data={data}>
<XAxis />
<YAxis />
<CartesianGrid />
<Line isAnimationActive={false} dataKey="y">
<LabelList dataKey="note" position="top" />
</Line>
</Chart>
</ResponsiveContainer>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment