Files
Wyview/app/tiktok/layout.tsx
2026-03-11 16:02:55 +01:00

5 lines
178 B
TypeScript

import AppLayout from "@/components/AppLayout";
export default function AuthLayout({ children }: { children: React.ReactNode }) {
return <AppLayout>{children}</AppLayout>;
}