mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-09-26 19:31:18 +08:00
17 lines
466 B
TypeScript
17 lines
466 B
TypeScript
import { Providers } from '@/components/providers'
|
|
import { RootLayout } from '@/components/layout'
|
|
import { Header } from '@/components/header'
|
|
import { PlatformSettingsForm } from '@/components/platform/settings'
|
|
|
|
export default function PlatformSettingsPage() {
|
|
return (
|
|
<Providers>
|
|
<RootLayout mainHeader={<Header />}>
|
|
<div className="w-full py-4">
|
|
<PlatformSettingsForm />
|
|
</div>
|
|
</RootLayout>
|
|
</Providers>
|
|
)
|
|
}
|