Files
main_frontend/app/layout.tsx
T
Dmitriy Bratchikov 90b858ebd5 lint: prettier
2024-05-27 16:23:46 +07:00

22 lines
394 B
TypeScript

import type { Metadata } from "next"
import type { ReactNode } from "react"
import "@app/styles/global.scss"
export const metadata: Metadata = {
title: "Let's Develop!",
description: "FSD Template with Next.js by yunglocokid",
}
export default function RootLayout({
children,
}: Readonly<{
children: ReactNode
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}