diff --git a/src/index.tsx b/src/index.tsx index 032464f..3ae5bc7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,8 +1,8 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; -import App from './App'; -import reportWebVitals from './reportWebVitals'; +import reportWebVitals from "./utils/reportWebVitals"; +import App from "./ui/App"; const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement diff --git a/src/logo.svg b/src/resources/logo.svg similarity index 100% rename from src/logo.svg rename to src/resources/logo.svg diff --git a/src/App.css b/src/ui/App.css similarity index 100% rename from src/App.css rename to src/ui/App.css diff --git a/src/App.test.tsx b/src/ui/App.test.tsx similarity index 100% rename from src/App.test.tsx rename to src/ui/App.test.tsx diff --git a/src/App.tsx b/src/ui/App.tsx similarity index 100% rename from src/App.tsx rename to src/ui/App.tsx diff --git a/src/reportWebVitals.ts b/src/utils/reportWebVitals.ts similarity index 100% rename from src/reportWebVitals.ts rename to src/utils/reportWebVitals.ts diff --git a/src/setupTests.ts b/src/utils/setupTests.ts similarity index 100% rename from src/setupTests.ts rename to src/utils/setupTests.ts