postiz/apps/frontend/app/layout.tsx

19 lines
306 B
TypeScript

import './global.css';
export const metadata = {
title: 'Welcome to frontend',
description: 'Generated by create-nx-workspace',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}