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(