diff --git a/src/App.js b/src/App.js
index e8e0362..d89aae9 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,25 +1,9 @@
-import logo from './logo.svg';
-import './App.css';
+import React from 'react'
-function App() {
+const App = () => {
return (
-
- );
+ App
+ )
}
-export default App;
+export default App
\ No newline at end of file
diff --git a/src/index.js b/src/index.js
index d563c0f..7716fe4 100644
--- a/src/index.js
+++ b/src/index.js
@@ -2,7 +2,6 @@ import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
-import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
@@ -11,7 +10,3 @@ 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();