Files
pca-pijac/frontend/app/layout.js
2023-06-09 19:28:43 +04:00

14 lines
202 B
JavaScript

export const metadata = {
title: 'PCA Pijac',
description: '',
}
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}