Files
wehub-resource-sync 221778fa98
rowboat / apps/x Vitest suites (push) Has been cancelled
rowboat / apps/x Electron package smoke test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:33:34 +08:00

16 lines
387 B
TypeScript

import { USE_AUTH, USE_BILLING } from "../lib/feature_flags";
import AppLayout from './layout/components/app-layout';
export const dynamic = 'force-dynamic';
export default function Layout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<AppLayout useAuth={USE_AUTH} useBilling={USE_BILLING}>
{children}
</AppLayout>
);
}