({children})
| 2 | import { SessionProvider } from "next-auth/react" |
| 3 | |
| 4 | export default function SessionWrapper({children}) { |
| 5 | return ( |
| 6 | <SessionProvider> |
| 7 | {children} |
| 8 | </SessionProvider> |
| 9 | ) |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected