From c3680125c085fbc2729959c2e167558d2b21738c Mon Sep 17 00:00:00 2001 From: brgndy Date: Thu, 7 Sep 2023 13:06:54 +0900 Subject: [PATCH] =?UTF-8?q?chore=20:=20Register=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=EB=A5=BC=20=EA=B5=AC=EC=84=B1=ED=95=A9=EB=8B=88?= =?UTF-8?q?=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/register/page.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/register/page.tsx b/src/app/register/page.tsx index 82ba16da..38f48c75 100644 --- a/src/app/register/page.tsx +++ b/src/app/register/page.tsx @@ -1,5 +1,10 @@ -import React from "react"; +import SignForm from "@/components/SignForm/SignForm"; +import SignUpFunnel from "@/components/SignUpFunnel/SignUpFunnel"; export default function RegisterPage() { - return
회원 등록 페이지입니다!
; + return ( + <> + + + ); }