the-forest/client/src/Landing.jsx
2024-09-17 20:35:18 -04:00

25 lines
517 B
JavaScript

import logo from './logo.svg';
import './App.css';
function Landing() {
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="/">
Go to here!
</a>
<div>
<h3>Welcome to the forest!</h3>
</div>
</header>
</div>
);
}
export default Landing;