mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +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}
|
|
</>
|
|
)
|
|
}
|