Skip to content

Commit

Permalink
refactor: 폴더 구조
Browse files Browse the repository at this point in the history
  • Loading branch information
rabyeoljji committed Dec 15, 2024
1 parent 97a9a69 commit 24ab79f
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ interface LayoutProps extends PropsWithChildren {

const Layout: FunctionComponent<LayoutProps> = ({ children, header }) => {
return (
<main>
<>
{header}
{children}
</main>
</>
)
}

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ interface LayoutProps extends PropsWithChildren {

const Layout: FunctionComponent<LayoutProps> = ({ children, header }) => {
return (
<main>
<>
{header}
{children}
</main>
</>
)
}

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/app/(routes)/record/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ interface LayoutProps extends PropsWithChildren {

const Layout: FunctionComponent<LayoutProps> = ({ children, header }) => {
return (
<main>
<>
{header}
{children}
</main>
</>
)
}

Expand Down

0 comments on commit 24ab79f

Please sign in to comment.