mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-23 17:28:23 +00:00
19 lines
385 B
TypeScript
19 lines
385 B
TypeScript
import "styles/globals.css"
|
|
|
|
import { Toaster } from "@/components/ui/toast"
|
|
|
|
interface RootLayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export default function RootLayout({ children }: RootLayoutProps) {
|
|
return (
|
|
<html lang="en">
|
|
<head />
|
|
<body className="min-h-screen">
|
|
{children}
|
|
<Toaster position="bottom-right" />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|