mirror of
https://github.com/Radiquum/YAMPD.git
synced 2025-05-19 23:29:34 +05:00
20 lines
384 B
TypeScript
20 lines
384 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import { App } from "./App";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Create Next App",
|
|
description: "Generated by create next app",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<App>{children}</App>
|
|
</html>
|
|
);
|
|
}
|