aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(onboarding)/layout.tsx
blob: 10a9a3ecb8f9c1654b109c62107f7c4574be84b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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;