Skip to content

Commit

Permalink
Merge pull request #1 from adityasimant/main
Browse files Browse the repository at this point in the history
Hello world template and removed CSS of App.js
  • Loading branch information
adityasimant authored Aug 13, 2023
2 parents 94adf84 + c489507 commit a7a4c37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 54 deletions.
38 changes: 0 additions & 38 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -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);
}
}
21 changes: 5 additions & 16 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,11 @@ import './App.css';

function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
<>

<h2>Hello world!</h2>

</>
);
}

Expand Down

0 comments on commit a7a4c37

Please sign in to comment.