From 89fd48a9150df4aebc296ffc83d3aea87eed0d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=A7=84=ED=98=B8?= Date: Wed, 31 Jul 2024 17:55:20 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20global=20style=20app=EA=B3=BC=20ind?= =?UTF-8?q?ex=EC=97=90=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Pakxe --- client/src/App.tsx | 6 +++++- client/src/index.tsx | 2 -- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/client/src/App.tsx b/client/src/App.tsx index 46618d881..e09f98e8d 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -1,9 +1,13 @@ -import {HDesignProvider} from 'haengdong-design'; import {Outlet} from 'react-router-dom'; +import {HDesignProvider} from 'haengdong-design'; +import {Global} from '@emotion/react'; + +import {GlobalStyle} from './GlobalStyle'; const App: React.FC = () => { return ( + ); diff --git a/client/src/index.tsx b/client/src/index.tsx index b3d742c43..eeffe86f4 100644 --- a/client/src/index.tsx +++ b/client/src/index.tsx @@ -3,8 +3,6 @@ import ReactDOM from 'react-dom/client'; import {RouterProvider} from 'react-router-dom'; import router from './router'; -import './reset.css'; -import './index.css'; ReactDOM.createRoot(document.getElementById('root')!).render(