rsnext/test/e2e/instrumentation-hook/with-async-node-page/pages/index.tsx

12 lines
240 B
TypeScript
Raw Normal View History

export default function Page({ finished }) {
return <p>{`Node - finished: ${finished}`}</p>
}
export async function getServerSideProps() {
return {
props: {
finished: Boolean(globalThis.instrumentationFinished),
},
}
}