Skip to content

Commit

Permalink
style: layout.tsx style 제거 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
yeeZinu committed Jun 3, 2024
1 parent 3d61c36 commit 704eb85
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
10 changes: 0 additions & 10 deletions src/app/(userpage)/layout.module.scss

This file was deleted.

4 changes: 1 addition & 3 deletions src/app/(userpage)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import styles from "./layout.module.scss";

export default function UserLayout({ children }: { children: React.ReactNode }) {
return <section className={styles.container}>{children}</section>;
return <section>{children}</section>;
}
1 change: 1 addition & 0 deletions src/app/(userpage)/otherpage/[userId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export default function OtherPage() {
folloing={102}
isfollow={false}
/>
<div>hi</div>
</div>
);
}

0 comments on commit 704eb85

Please sign in to comment.