生产管理系统 - 登录,二维码功能集成
This commit is contained in:
17
crop-x/src/app/(auth)/register/layout.tsx
Normal file
17
crop-x/src/app/(auth)/register/layout.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { ReactNode } from 'react'
|
||||
import { AuthProvider } from '@/components/auth/AuthContext'
|
||||
import '@/styles/globals.css'
|
||||
|
||||
export default function RegisterLayout({
|
||||
children,
|
||||
}: {
|
||||
children: ReactNode
|
||||
}) {
|
||||
return (
|
||||
<AuthProvider>
|
||||
<div className="min-h-screen relative">
|
||||
{children}
|
||||
</div>
|
||||
</AuthProvider>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user