postiz-app/apps/frontend/app/layout.tsx
2024-01-28 16:20:26 +07:00

18 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>
);
}