Skip to content

Commit

Permalink
fix(lint): 세미콜론 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubinquitous authored Sep 30, 2023
1 parent 38dfe34 commit 41cf3d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ export const metadata = {
export default function RootLayout({
children,
}: {
children: React.ReactNode
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
<Provider>{children}</Provider>
</body>
</html>
)
);
}

0 comments on commit 41cf3d4

Please sign in to comment.