summaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
authorrohan09-raj <[email protected]>2022-07-17 23:54:57 +0530
committerrohan09-raj <[email protected]>2022-07-17 23:54:57 +0530
commit391e1cfee65e66bc9ceeea71c8015effc02e2bbf (patch)
tree2dcd6961d726d711eaf66140b2f31a25a43c5904 /src/App.js
parentc44c85af7ade620419c097d9fc8ce4c9c66c00a7 (diff)
Added eslint and prettier
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/App.js b/src/App.js
index 2f7a2bc..f61c245 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,12 +1,12 @@
-import React from 'react';
-import Home from './pages/Home/Home';
+import React from 'react'
+import Home from './pages/Home/Home'
const App = () => {
return (
<>
<Home />
</>
- );
-};
+ )
+}
-export default App;
+export default App