mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-09-26 19:31:18 +08:00
20 lines
574 B
TypeScript
20 lines
574 B
TypeScript
import { Providers } from '@/components/providers'
|
|
import { RootLayout } from '@/components/layout'
|
|
import { Header } from '@/components/header'
|
|
import { UserProfileForm } from '@/components/user/user-info'
|
|
|
|
export default function UserInfoPage() {
|
|
return (
|
|
<Providers>
|
|
<RootLayout mainHeader={<Header />}>
|
|
<div className="w-full">
|
|
<div className="flex flex-1 flex-col">
|
|
<div className="flex flex-1 flex-row mb-2 gap-2"></div>
|
|
</div>
|
|
<UserProfileForm />
|
|
</div>
|
|
</RootLayout>
|
|
</Providers>
|
|
)
|
|
}
|