mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-21 14:34:03 +00:00
14 lines
445 B
TypeScript
14 lines
445 B
TypeScript
"use client"
|
|
|
|
import { EnsureWorkspace } from "@/components/ensure-workspace"
|
|
import { PWAInstallPrompt } from "@/components/pwa-install-prompt"
|
|
import { SettingsModalProvider } from "@/components/settings/settings-modal"
|
|
|
|
export default function AppLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<SettingsModalProvider>
|
|
<EnsureWorkspace>{children}</EnsureWorkspace>
|
|
<PWAInstallPrompt />
|
|
</SettingsModalProvider>
|
|
)
|
|
}
|