From e53d3bf07967166b1e2c918a2c0dbead78f95256 Mon Sep 17 00:00:00 2001 From: ktmihs Date: Wed, 6 Jul 2022 15:48:49 +0900 Subject: [PATCH] fix: #65 Change bottom button component Change FixedBottomLinkButton to FixedBottomButton - edit.tsx --- pages/trainer/[id]/edit.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pages/trainer/[id]/edit.tsx b/pages/trainer/[id]/edit.tsx index c375cf0..f689eac 100644 --- a/pages/trainer/[id]/edit.tsx +++ b/pages/trainer/[id]/edit.tsx @@ -1,4 +1,4 @@ -import { FixedBottomLinkButton } from '@components/common/button'; +import { FixedBottomButton } from '@components/common/button'; import { TitleBar } from '@components/common/title'; import { Edit } from '@components/layout/trainer/edit'; import styled from '@emotion/styled'; @@ -48,6 +48,8 @@ const TrainerEdit = () => { alt: '회원탈퇴', }; + const handleButtonClick = () => {}; + const Withdraw = styled.div` position: relative; width: 73px; @@ -72,7 +74,12 @@ const TrainerEdit = () => { 회원탈퇴 - + ); };