movie-explorer/src/App.tsx

18 lines
203 B
TypeScript
Raw Normal View History

2024-04-29 11:19:01 +00:00
import './App.css'
function App() {
return (
<>
<header>
<h1>Movie Explorer</h1>
</header>
<main>
Let's explore!
</main>
</>
)
}
export default App