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