mediahub-fe/providers/auth.provider.tsx

13 lines
266 B
TypeScript
Raw Normal View History

2024-11-26 03:09:48 +00:00
'use client'
2024-12-24 12:55:28 +00:00
// import { SessionProvider } from "next-auth/react"
2024-11-26 03:09:48 +00:00
import React from 'react'
const AuthProvider = ({ children }: { children: React.ReactNode }) => {
return (
2024-12-24 12:55:28 +00:00
<div>
2024-11-26 03:09:48 +00:00
{children}
2024-12-24 12:55:28 +00:00
</div>
2024-11-26 03:09:48 +00:00
)
}
export default AuthProvider