We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c9966a7 + 96edc64 commit 671b016Copy full SHA for 671b016
5 files changed
.gitignore
@@ -16,6 +16,8 @@ version.json
16
node_modules
17
.node-version
18
*/node_modules
19
+.next
20
+*/.next
21
/.pnp
22
.pnp.js
23
/build
frontend/package.json
@@ -41,5 +41,8 @@
41
},
42
"overrides": {
43
"react": "^19.0.0"
44
+ },
45
+ "eslintConfig": {
46
+ "extends": ["next/core-web-vitals"]
47
}
48
frontend/src/app/layout.tsx
@@ -1,8 +1,8 @@
1
-import type { ReactNode } from "react";
+import React from "react";
2
3
-type RootLayoutProps = Readonly<{ children: ReactNode }>;
4
-
5
-export default function RootLayout({ children }: RootLayoutProps) {
+export default function RootLayout({
+ children,
+}: Readonly<{ children: React.ReactNode }>) {
6
return (
7
<html lang="en">
8
<body>{children}</body>
0 commit comments