Skip to content

Commit

Permalink
chore(missionary-app): Root Layout 컴포넌트 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
juchanhwang committed Apr 6, 2024
1 parent 9250b75 commit 358a06a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/missionary-app/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const RootLayout = ({ children }: { children: React.ReactNode }) => (
<html lang="ko">
<body>
<main>{children}</main>
</body>
</html>
);

export default RootLayout;

0 comments on commit 358a06a

Please sign in to comment.