Skip to content

Commit

Permalink
💄 로그인 페이지 레이아웃 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
jangmoonwon committed Jul 10, 2024
1 parent 8ee83af commit f472f6f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pageLayout/AuthLayout/AuthLayout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { ReactNode } from 'react';

export default function AuthLayout({ children }: { children: ReactNode }) {
return <div className='flex flex-col justify-center items-center bg-background-100 w-full h-screen'>{children}</div>;
}

0 comments on commit f472f6f

Please sign in to comment.