From 75618ad25f128188a07264349988332b7da8ecfd Mon Sep 17 00:00:00 2001 From: anthony-mini Date: Sun, 4 Dec 2022 23:09:35 +0100 Subject: [PATCH] Renamed index.js and App.js to (...).jsx --- src/App.js | 24 ------------------------ src/index.js | 17 ----------------- 2 files changed, 41 deletions(-) delete mode 100644 src/App.js delete mode 100644 src/index.js diff --git a/src/App.js b/src/App.js deleted file mode 100644 index ea64d03..0000000 --- a/src/App.js +++ /dev/null @@ -1,24 +0,0 @@ -import logo from './logo.svg'; - -function App() { - return ( -
-
- logo -

- Edit src/App.js and save to reload. -

- - Learn React - -
-
- ); -} - -export default App; diff --git a/src/index.js b/src/index.js deleted file mode 100644 index 4a088a5..0000000 --- a/src/index.js +++ /dev/null @@ -1,17 +0,0 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import './sass/main.scss'; -import App from './App'; -import reportWebVitals from './reportWebVitals'; - -const root = ReactDOM.createRoot(document.getElementById('root')); -root.render( - - - -); - -// If you want to start measuring performance in your app, pass a function -// to log results (for example: reportWebVitals(console.log)) -// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals -reportWebVitals();