From 704eb85b2770702e2638daa3edaa8b2f39d9b7c0 Mon Sep 17 00:00:00 2001 From: yeeZinu Date: Mon, 3 Jun 2024 16:50:53 +0900 Subject: [PATCH] =?UTF-8?q?style:=20layout.tsx=20style=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0=20(#35)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(userpage)/layout.module.scss | 10 ---------- src/app/(userpage)/layout.tsx | 4 +--- src/app/(userpage)/otherpage/[userId]/page.tsx | 1 + 3 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 src/app/(userpage)/layout.module.scss diff --git a/src/app/(userpage)/layout.module.scss b/src/app/(userpage)/layout.module.scss deleted file mode 100644 index 2a34ee6..0000000 --- a/src/app/(userpage)/layout.module.scss +++ /dev/null @@ -1,10 +0,0 @@ - -@import "@/styles/_index"; -@import "@/styles/_media"; - -.container { - width: 100%; - height: 100vh; - overflow: auto; - background-color: $bg-black-100; -} \ No newline at end of file diff --git a/src/app/(userpage)/layout.tsx b/src/app/(userpage)/layout.tsx index 9406c3b..9853a01 100644 --- a/src/app/(userpage)/layout.tsx +++ b/src/app/(userpage)/layout.tsx @@ -1,5 +1,3 @@ -import styles from "./layout.module.scss"; - export default function UserLayout({ children }: { children: React.ReactNode }) { - return
{children}
; + return
{children}
; } diff --git a/src/app/(userpage)/otherpage/[userId]/page.tsx b/src/app/(userpage)/otherpage/[userId]/page.tsx index 76f7768..55dae26 100644 --- a/src/app/(userpage)/otherpage/[userId]/page.tsx +++ b/src/app/(userpage)/otherpage/[userId]/page.tsx @@ -23,6 +23,7 @@ export default function OtherPage() { folloing={102} isfollow={false} /> +
hi
); }