🎉 Initialized React TypeScript app

This commit is contained in:
Alicia Sykes
2022-06-11 21:59:03 +01:00
commit 5a3c7793f7
20 changed files with 28427 additions and 0 deletions

26
src/App.tsx Normal file
View File

@@ -0,0 +1,26 @@
import React from 'react';
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.tsx</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
export default App;