Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created October 3, 2022 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulieScanlon/45ccc30244d26967a2a5e673e47f4ac0 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/45ccc30244d26967a2a5e673e47f4ac0 to your computer and use it in GitHub Desktop.
Render the Line Chart on a Page
import React from 'react';
import LineChart from '../components/line-chart';
const Page = ({...}) => {
return <LineChart data={results} />;
};
export default Page;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment