Files
pfadi-bussle/helpers/withAuth.tsx
2024-09-13 22:55:10 +02:00

24 lines
587 B
TypeScript

import { SessionProvider } from 'next-auth/react'
import Auth from '../components/auth'
// This is the HOC
function withAuth(WrappedComponent: React.FunctionComponent) {
// Return a new component
function withAuth({ session, ...pageProps }) {
// Render the WrappedComponent with additional props
return (
<SessionProvider session={session}>
<Auth>
<WrappedComponent {...pageProps} />
</Auth>
</SessionProvider>
)
}
withAuth.displayName = `withAuth(${WrappedComponent.displayName}`
return withAuth
}
export default withAuth