12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
import React from "react"
|
|
import { BottomNav } from "@/components/bottom-nav"
|
|
|
|
export default function AppLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="min-h-dvh pb-20">
|
|
{children}
|
|
<BottomNav />
|
|
</div>
|
|
)
|
|
}
|