* chore: remove uuid-random dependency * chore: upgrade prettier * chore(client): bump version for release
19 lines
320 B
TypeScript
19 lines
320 B
TypeScript
import "./global.css";
|
|
|
|
export const metadata = {
|
|
title: "Welcome to demo-nextjs-app-router",
|
|
description: "Generated by create-nx-workspace",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|