Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created October 3, 2022 13:37
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/7ba543b4aeb07cfe6096c42139941760 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/7ba543b4aeb07cfe6096c42139941760 to your computer and use it in GitHub Desktop.
Next.js Page Sample Data Gist
const Page = ({ results }) => {
...
};
export const getServerSideProps = () => {
const sampleData = [
{
total: 84,
date: 'Sun Oct 10 2021 01:00:00 GMT+0100 (British Summer Time)'
}
...
];
return {
props: {
results: sampleData
}
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment