mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-05 08:06:19 +00:00
12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
"use client"
|
|
|
|
import { NewOnboardingModal } from "./new-onboarding-modal"
|
|
|
|
export function OnboardingWrapper({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<NewOnboardingModal />
|
|
{children}
|
|
</>
|
|
)
|
|
}
|