diff options
| author | codetorso <[email protected]> | 2024-07-20 07:17:25 +0530 |
|---|---|---|
| committer | codetorso <[email protected]> | 2024-07-20 07:17:25 +0530 |
| commit | 21fe55a96c36892fc50e8198248da825a5a4bd6f (patch) | |
| tree | 83832e20adb0e4acfa529ac624e7f2b914f7a25a /apps/web/app/(onboarding)/layout.tsx | |
| parent | fix links (diff) | |
| download | supermemory-torso.tar.xz supermemory-torso.zip | |
for god's sake this should work ;)torso
Diffstat (limited to 'apps/web/app/(onboarding)/layout.tsx')
| -rw-r--r-- | apps/web/app/(onboarding)/layout.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/web/app/(onboarding)/layout.tsx b/apps/web/app/(onboarding)/layout.tsx new file mode 100644 index 00000000..10a9a3ec --- /dev/null +++ b/apps/web/app/(onboarding)/layout.tsx @@ -0,0 +1,12 @@ +import React from "react"; +import { Toaster } from "@repo/ui/shadcn/sonner"; + +function layout({ children }: { children: React.ReactNode }) { + return ( + <div> + {children} <Toaster /> + </div> + ); +} + +export default layout; |