From de368dcc6ed36f7d916ddf56b57a461def238a54 Mon Sep 17 00:00:00 2001 From: hanseulhee <3021062@gmail.com> Date: Fri, 10 May 2024 19:13:58 +0900 Subject: [PATCH] =?UTF-8?q?[#4]=20button=20=EC=BB=B4=ED=8F=AC=EB=84=8C?= =?UTF-8?q?=ED=8A=B8=20=EA=B4=80=EB=A0=A8=20=ED=8C=8C=EC=9D=BC=20=EC=A0=95?= =?UTF-8?q?=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/button/{index.tsx => Button.tsx} | 0 src/components/common/button/index.ts | 5 +++++ 2 files changed, 5 insertions(+) rename src/components/common/button/{index.tsx => Button.tsx} (100%) create mode 100644 src/components/common/button/index.ts diff --git a/src/components/common/button/index.tsx b/src/components/common/button/Button.tsx similarity index 100% rename from src/components/common/button/index.tsx rename to src/components/common/button/Button.tsx diff --git a/src/components/common/button/index.ts b/src/components/common/button/index.ts new file mode 100644 index 0000000..9ce738a --- /dev/null +++ b/src/components/common/button/index.ts @@ -0,0 +1,5 @@ +import AddButton from '@/components/common/button/AddButton' +import Button from '@/components/common/button/Button' +import SplitButton from '@/components/common/button/SplitButton' + +export { AddButton, Button, SplitButton }