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