mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-12 23:01:07 +00:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
"use client"
|
|
|
|
import { MobileBanner } from "@/components/mobile-banner"
|
|
|
|
export default function AppLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<MobileBanner />
|
|
{children}
|
|
</>
|
|
)
|
|
}
|