18 lines
203 B
TypeScript
18 lines
203 B
TypeScript
|
import './App.css'
|
||
|
|
||
|
function App() {
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<header>
|
||
|
<h1>Movie Explorer</h1>
|
||
|
</header>
|
||
|
<main>
|
||
|
Let's explore!
|
||
|
</main>
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default App
|