chore: initialised with create-react-app

This commit is contained in:
Vojtech Simetka
2021-02-22 21:44:57 +01:00
parent 484fd21bef
commit 9a6c7c1360
19 changed files with 16039 additions and 1 deletions
+26
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;