mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 01:38:28 +00:00
23 lines
553 B
TypeScript
23 lines
553 B
TypeScript
import "styles/globals.css"
|
|
|
|
import { Toaster } from "@/ui/toast"
|
|
import { Help } from "@/components/help"
|
|
import { Analytics } from "@/components/analytics"
|
|
|
|
interface RootLayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export default function RootLayout({ children }: RootLayoutProps) {
|
|
return (
|
|
<html lang="en" className="bg-white text-slate-900 antialiased">
|
|
<head />
|
|
<body className="min-h-screen">
|
|
{children}
|
|
<Analytics />
|
|
<Help />
|
|
<Toaster position="bottom-right" />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|