Initialize project using Create React App

This commit is contained in:
Nicholas Orlowsky 2022-02-03 17:58:40 -06:00
commit 7fd7556f5c
No known key found for this signature in database
GPG key ID: DA69F4D62590FB49
20 changed files with 27750 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;