Skip to content

Commit 30490e8

Browse files
committed
type for sample updated
1 parent 5ec775d commit 30490e8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/app/layout.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ import React from "react";
22
import Header from "../components/Header";
33
import Footer from "../components/Footer";
44

5-
export default function RootLayout({ children }) {
5+
export default function RootLayout({
6+
children,
7+
}: {
8+
children: React.ReactNode;
9+
}) {
610
return (
711
<div className="min-h-screen flex flex-col">
812
<Header />

0 commit comments

Comments
 (0)