diff options
| author | MaheshtheDev <[email protected]> | 2026-01-25 06:36:23 +0000 |
|---|---|---|
| committer | MaheshtheDev <[email protected]> | 2026-01-25 06:36:23 +0000 |
| commit | 837fb5d725689896c7c472986f7a4e20d9aa91a2 (patch) | |
| tree | 9deff254c5d33e11935fca8dc3d8ceeabc28bc28 /apps/web/components/onboarding/onboarding-wrapper.tsx | |
| parent | feat: feedback modal for nova users (#703) (diff) | |
| download | supermemory-837fb5d725689896c7c472986f7a4e20d9aa91a2.tar.xz supermemory-837fb5d725689896c7c472986f7a4e20d9aa91a2.zip | |
chore: mobile banner for inconsistency and auto redirect in wrong route (#704)01-24-chore_mobile_banner_for_inconsistency_and_auto_redirect_in_wrong_route
Diffstat (limited to 'apps/web/components/onboarding/onboarding-wrapper.tsx')
| -rw-r--r-- | apps/web/components/onboarding/onboarding-wrapper.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/web/components/onboarding/onboarding-wrapper.tsx b/apps/web/components/onboarding/onboarding-wrapper.tsx new file mode 100644 index 00000000..ee1fcabb --- /dev/null +++ b/apps/web/components/onboarding/onboarding-wrapper.tsx @@ -0,0 +1,12 @@ +"use client" + +import { NewOnboardingModal } from "./new-onboarding-modal" + +export function OnboardingWrapper({ children }: { children: React.ReactNode }) { + return ( + <> + <NewOnboardingModal /> + {children} + </> + ) +} |