Skip to content

Commit

Permalink
chore: wow-docs layout 함수 선언 방식으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed May 18, 2024
1 parent 6b95df7 commit b9370fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/wow-docs/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ export const metadata: Metadata = {
description: "Generated by create turbo",
};

export const RootLayout = ({
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}): JSX.Element => {
}): JSX.Element {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
};
}

0 comments on commit b9370fc

Please sign in to comment.