This commit is contained in:
2023-06-30 17:37:09 -04:00
parent 0762a2a13b
commit 0c17db44d5

View File

@@ -1,25 +1,28 @@
import logo from './logo.svg';
import './App.css';
function App() {
//make scrollable webpage
function App(){
return (
<div className="App">
<header className="App-header">
<h1>My First React App</h1>
<img src={logo} className="App-logo" alt="logo" />
<p>
Hello there! I was changed on the feature branch.
Edit <code>src/App.js</code>, save, and reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
Learn React Now
</a>
</header>
</div>
);
}
export default App;