(context)
| 33 | |
| 34 | // Export the `session` prop to use sessions with Server Side Rendering |
| 35 | export async function getServerSideProps(context) { |
| 36 | return { |
| 37 | props: { |
| 38 | session: await getSession(context), |
| 39 | }, |
| 40 | } |
| 41 | } |
no test coverage detected
searching dependent graphs…