2025-01-27 15:02:34 +03:00

12 lines
267 B
TypeScript

import { BottomNav } from '@/components/navigation';
import { type PropsWithChildren } from 'react';
export default async function Layout({ children }: Readonly<PropsWithChildren>) {
return (
<>
<main>{children}</main>
<BottomNav />
</>
);
}