Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Last active October 3, 2022 13:36
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/b93b9234faa9252f0be51c8288db3e55 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/b93b9234faa9252f0be51c8288db3e55 to your computer and use it in GitHub Desktop.
Gatsby Page Sample Data Gist
const Page = ({ serverData: { results } }) => {
...
};
export const getServerData = () => {
const sampleData = [
{
total: 56,
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