react-code-dataset
/
next.js
/test
/e2e
/instrumentation-hook
/with-async-node-page
/pages
/index.tsx
| export default function Page({ finished }) { | |
| return <p>{`Node - finished: ${finished}`}</p> | |
| } | |
| export async function getServerSideProps() { | |
| return { | |
| props: { | |
| finished: Boolean(globalThis.instrumentationFinished), | |
| }, | |
| } | |
| } | |