From c489507125a0d1e4e2d4a3c13f53657291da5857 Mon Sep 17 00:00:00 2001 From: adityasimant Date: Sun, 13 Aug 2023 17:47:50 +0530 Subject: [PATCH] Hello world template and removed CSS of App.js --- src/App.css | 38 -------------------------------------- src/App.js | 21 +++++---------------- 2 files changed, 5 insertions(+), 54 deletions(-) diff --git a/src/App.css b/src/App.css index 74b5e0534..e69de29bb 100644 --- a/src/App.css +++ b/src/App.css @@ -1,38 +0,0 @@ -.App { - text-align: center; -} - -.App-logo { - height: 40vmin; - pointer-events: none; -} - -@media (prefers-reduced-motion: no-preference) { - .App-logo { - animation: App-logo-spin infinite 20s linear; - } -} - -.App-header { - background-color: #282c34; - min-height: 100vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); - color: white; -} - -.App-link { - color: #61dafb; -} - -@keyframes App-logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} diff --git a/src/App.js b/src/App.js index 378457572..d76f79d8e 100644 --- a/src/App.js +++ b/src/App.js @@ -3,22 +3,11 @@ import './App.css'; function App() { return ( -
-
- logo -

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

- - Learn React - -
-
+ <> + +

Hello world!

+ + ); }