1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/code/frontend/src/App.js

27 lines
656 B
JavaScript
Raw Normal View History

2021-04-20 22:09:13 +00:00
import logo from "./logo.svg"
import "./App.css"
2021-04-20 22:07:39 +00:00
function App() {
2021-04-20 22:09:13 +00:00
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>
)
2021-04-20 22:07:39 +00:00
}
2021-04-20 22:09:13 +00:00
export default App