From 9e432d13c9e4592319f231022a056ac767c8d2c1 Mon Sep 17 00:00:00 2001 From: Goldenprevue Date: Sat, 4 Mar 2023 23:30:07 +0900 Subject: [PATCH] =?UTF-8?q?ADD=20=EC=83=9D=EC=84=B1=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=ED=85=8C=EC=9D=B4=EB=B8=94=20=EC=BB=B4=ED=8F=AC?= =?UTF-8?q?=EB=84=8C=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../{create_component => create_components}/AddButton.tsx | 0 .../{create_component => create_components}/CreateInput.tsx | 0 .../CreateUtm.module.css | 0 .../{create_component => create_components}/CreateUtm.tsx | 0 .../{create_component => create_components}/ShortenUrl.tsx | 0 src/components/create_components/Table.tsx | 5 +++++ 6 files changed, 5 insertions(+) rename src/components/{create_component => create_components}/AddButton.tsx (100%) rename src/components/{create_component => create_components}/CreateInput.tsx (100%) rename src/components/{create_component => create_components}/CreateUtm.module.css (100%) rename src/components/{create_component => create_components}/CreateUtm.tsx (100%) rename src/components/{create_component => create_components}/ShortenUrl.tsx (100%) create mode 100644 src/components/create_components/Table.tsx diff --git a/src/components/create_component/AddButton.tsx b/src/components/create_components/AddButton.tsx similarity index 100% rename from src/components/create_component/AddButton.tsx rename to src/components/create_components/AddButton.tsx diff --git a/src/components/create_component/CreateInput.tsx b/src/components/create_components/CreateInput.tsx similarity index 100% rename from src/components/create_component/CreateInput.tsx rename to src/components/create_components/CreateInput.tsx diff --git a/src/components/create_component/CreateUtm.module.css b/src/components/create_components/CreateUtm.module.css similarity index 100% rename from src/components/create_component/CreateUtm.module.css rename to src/components/create_components/CreateUtm.module.css diff --git a/src/components/create_component/CreateUtm.tsx b/src/components/create_components/CreateUtm.tsx similarity index 100% rename from src/components/create_component/CreateUtm.tsx rename to src/components/create_components/CreateUtm.tsx diff --git a/src/components/create_component/ShortenUrl.tsx b/src/components/create_components/ShortenUrl.tsx similarity index 100% rename from src/components/create_component/ShortenUrl.tsx rename to src/components/create_components/ShortenUrl.tsx diff --git a/src/components/create_components/Table.tsx b/src/components/create_components/Table.tsx new file mode 100644 index 0000000..bac2917 --- /dev/null +++ b/src/components/create_components/Table.tsx @@ -0,0 +1,5 @@ +import React from 'react'; + +export const Table = () => { + return
; +};