Files
hypixel-stats/src/app/(stats)/layout.tsx
2025-09-17 16:00:50 +02:00

13 lines
253 B
TypeScript

import Header from "@/components/header"
export default function StatsLayout({ children }: LayoutProps<"/">) {
return (
<>
<Header searchBar />
<div>
{children}
</div>
</>
)
}