Frontend template import

This commit is contained in:
aronmal 2022-08-06 00:21:47 +02:00
parent 01d0575505
commit 79d5f23078
Signed by: aronmal
GPG key ID: 816B7707426FC612
16 changed files with 28861 additions and 0 deletions

24
frontend/src/App.tsx Normal file
View file

@ -0,0 +1,24 @@
import './App.scss';
function App() {
return (
<div className="App">
<header className="App-header">
<img src="logo.svg" 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;