14 lines
359 B
TypeScript
14 lines
359 B
TypeScript
import { UpdateProfile } from '@/components/auth';
|
|
import { BottomNav } from '@/components/navigation';
|
|
import { type PropsWithChildren } from 'react';
|
|
|
|
export default async function Layout({ children }: Readonly<PropsWithChildren>) {
|
|
return (
|
|
<>
|
|
<UpdateProfile />
|
|
<main className="grow">{children}</main>
|
|
<BottomNav />
|
|
</>
|
|
);
|
|
}
|