Skip to content

Commit

Permalink
update : 컴포넌트를 넣을 수 있는 공통 레이아웃 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hojae-lee authored Mar 12, 2024
1 parent 70254c1 commit 848ba79
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions components/Common/ChildLayout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default function ChildLayout({
children,
}: {
children: React.ReactNode;
}) {
return <div className="mx-auto max-w-7xl px-6 lg:px-8">{children}</div>;
}

0 comments on commit 848ba79

Please sign in to comment.