Skip to content

Instantly share code, notes, and snippets.

@szaranger
Created August 7, 2022 00:52
Show Gist options
  • Save szaranger/f854c6740efc1ed81f1f8498ed043afe to your computer and use it in GitHub Desktop.
Save szaranger/f854c6740efc1ed81f1f8498ed043afe to your computer and use it in GitHub Desktop.
const App = ({ data }) => <p>{data}</p>;
export const getStaticProps = async () => ({ props: { data: 'Hello world' } });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment