feat: INIT PROJECT.

This commit is contained in:
Ivan Li
2021-04-18 11:18:29 +08:00
parent c7c5495a88
commit 065e1679ba
5 changed files with 411 additions and 16 deletions

View File

@@ -1,25 +1,13 @@
import React from 'react';
import logo from './logo.svg';
import './App.css';
import { Button } from '@material-ui/core';
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>
<Button variant="contained" color="primary">
</Button>
);
}

View File

@@ -1,6 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import "fontsource-roboto";
import App from './App';
import reportWebVitals from './reportWebVitals';