12 lines
267 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|