mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
* test: fix flaky remote registry test * fix * fix: test * fix * fix * fix * fix * fix * tests: cleanup
23 lines
456 B
TypeScript
23 lines
456 B
TypeScript
import "./globals.css"
|
|
import type { Metadata } from "next"
|
|
import { Inter } from "next/font/google"
|
|
|
|
const inter = Inter({ subsets: ["latin"] })
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Create Next App",
|
|
description: "Generated by create next app",
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|