From a09b96de6fe9b1270620119de60947cf56b14a7c Mon Sep 17 00:00:00 2001 From: toothlessdev Date: Fri, 10 May 2024 23:49:58 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EB=94=94=EB=A0=89=ED=86=A0?= =?UTF-8?q?=EB=A6=AC=20=EA=B5=AC=EC=A1=B0=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 2 +- src/{common => components}/display/.gitkeep | 0 src/{common => components}/feedback/.gitkeep | 0 src/{common => components}/forms/.gitkeep | 0 src/{common => components}/forms/Button.tsx | 0 src/{common => components}/layout/.gitkeep | 0 src/{common => components}/layout/Footer.styled.ts | 0 src/{common => components}/layout/Footer.tsx | 2 +- src/{common => components}/layout/MainLayout.tsx | 0 src/{common => components}/navigation/Navigation.styled.ts | 0 src/{common => components}/navigation/Navigation.tsx | 0 src/{common => components}/navigation/Pagination.styled.tsx | 0 src/{common => components}/navigation/Pagination.tsx | 0 src/{common => components}/typography/.gitkeep | 0 src/{common => components}/typography/Text.tsx | 0 src/pages/HomePage.tsx | 2 +- 16 files changed, 3 insertions(+), 3 deletions(-) rename src/{common => components}/display/.gitkeep (100%) rename src/{common => components}/feedback/.gitkeep (100%) rename src/{common => components}/forms/.gitkeep (100%) rename src/{common => components}/forms/Button.tsx (100%) rename src/{common => components}/layout/.gitkeep (100%) rename src/{common => components}/layout/Footer.styled.ts (100%) rename src/{common => components}/layout/Footer.tsx (76%) rename src/{common => components}/layout/MainLayout.tsx (100%) rename src/{common => components}/navigation/Navigation.styled.ts (100%) rename src/{common => components}/navigation/Navigation.tsx (100%) rename src/{common => components}/navigation/Pagination.styled.tsx (100%) rename src/{common => components}/navigation/Pagination.tsx (100%) rename src/{common => components}/typography/.gitkeep (100%) rename src/{common => components}/typography/Text.tsx (100%) diff --git a/src/App.tsx b/src/App.tsx index cb5a9e8..b8622b8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,7 +2,7 @@ import React from "react"; import { Provider } from "react-redux"; import { Route, Routes } from "react-router-dom"; -import { MainLayout } from "@/common/layout/MainLayout"; +import { MainLayout } from "@/components/layout/MainLayout"; import HomePage from "@/pages/HomePage"; diff --git a/src/common/display/.gitkeep b/src/components/display/.gitkeep similarity index 100% rename from src/common/display/.gitkeep rename to src/components/display/.gitkeep diff --git a/src/common/feedback/.gitkeep b/src/components/feedback/.gitkeep similarity index 100% rename from src/common/feedback/.gitkeep rename to src/components/feedback/.gitkeep diff --git a/src/common/forms/.gitkeep b/src/components/forms/.gitkeep similarity index 100% rename from src/common/forms/.gitkeep rename to src/components/forms/.gitkeep diff --git a/src/common/forms/Button.tsx b/src/components/forms/Button.tsx similarity index 100% rename from src/common/forms/Button.tsx rename to src/components/forms/Button.tsx diff --git a/src/common/layout/.gitkeep b/src/components/layout/.gitkeep similarity index 100% rename from src/common/layout/.gitkeep rename to src/components/layout/.gitkeep diff --git a/src/common/layout/Footer.styled.ts b/src/components/layout/Footer.styled.ts similarity index 100% rename from src/common/layout/Footer.styled.ts rename to src/components/layout/Footer.styled.ts diff --git a/src/common/layout/Footer.tsx b/src/components/layout/Footer.tsx similarity index 76% rename from src/common/layout/Footer.tsx rename to src/components/layout/Footer.tsx index 5b13d48..2c0711c 100644 --- a/src/common/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -1,6 +1,6 @@ import React from "react"; -import { FooterContainer } from "@/common/layout/Footer.styled"; +import { FooterContainer } from "@/components/layout/Footer.styled"; const Footer: React.FC = () => { return ( diff --git a/src/common/layout/MainLayout.tsx b/src/components/layout/MainLayout.tsx similarity index 100% rename from src/common/layout/MainLayout.tsx rename to src/components/layout/MainLayout.tsx diff --git a/src/common/navigation/Navigation.styled.ts b/src/components/navigation/Navigation.styled.ts similarity index 100% rename from src/common/navigation/Navigation.styled.ts rename to src/components/navigation/Navigation.styled.ts diff --git a/src/common/navigation/Navigation.tsx b/src/components/navigation/Navigation.tsx similarity index 100% rename from src/common/navigation/Navigation.tsx rename to src/components/navigation/Navigation.tsx diff --git a/src/common/navigation/Pagination.styled.tsx b/src/components/navigation/Pagination.styled.tsx similarity index 100% rename from src/common/navigation/Pagination.styled.tsx rename to src/components/navigation/Pagination.styled.tsx diff --git a/src/common/navigation/Pagination.tsx b/src/components/navigation/Pagination.tsx similarity index 100% rename from src/common/navigation/Pagination.tsx rename to src/components/navigation/Pagination.tsx diff --git a/src/common/typography/.gitkeep b/src/components/typography/.gitkeep similarity index 100% rename from src/common/typography/.gitkeep rename to src/components/typography/.gitkeep diff --git a/src/common/typography/Text.tsx b/src/components/typography/Text.tsx similarity index 100% rename from src/common/typography/Text.tsx rename to src/components/typography/Text.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 06fc254..ecc4b28 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,6 +1,6 @@ import React from "react"; -import { Pagination } from "@/common/navigation/Pagination"; +import { Pagination } from "@/components/navigation/Pagination"; import { PageContainer, MainContent, StyledImage } from "@/pages/HomePage.styled";