feat: use Next.js 13 App directory

This commit is contained in:
swve 2023-01-08 21:32:12 +01:00
parent cb3fc9a488
commit 379a0e9859
28 changed files with 418 additions and 295 deletions

15
front/app/layout.tsx Normal file
View file

@ -0,0 +1,15 @@
import '../styles/globals.css'
import StyledComponentsRegistry from '../services/lib/styled-registry'
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html>
<head />
<body> <StyledComponentsRegistry>{children}</StyledComponentsRegistry></body>
</html>
)
}