Skip to content

Commit

Permalink
chore(examples): update App layout
Browse files Browse the repository at this point in the history
  • Loading branch information
samcx committed Jan 3, 2025
1 parent c7a9b4d commit 0af1647
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions examples/reproduction-template/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
export default function RootLayout({ children }) {
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html>
<head />
<html lang="en">
<body>{children}</body>
</html>
);
Expand Down

0 comments on commit 0af1647

Please # to comment.