diff options
| author | 2020-09-27 23:14:18 +0100 | |
|---|---|---|
| committer | 2020-09-27 23:14:18 +0100 | |
| commit | 6a492df9ebb270afee94d0f8db596a7e887e631e (patch) | |
| tree | abf38b335b83f262a6c1e949d6bba97273edbf9f /src/App.tsx | |
Initialize project using Create React App
Diffstat (limited to 'src/App.tsx')
| -rw-r--r-- | src/App.tsx | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..a53698a --- /dev/null +++ b/src/App.tsx @@ -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; | 
