This commit is contained in:
Nilstrieb 2021-02-13 14:57:19 +01:00
parent a68c668a04
commit 9443cbd1b3
18 changed files with 223 additions and 114 deletions

View file

@ -1,17 +1,8 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
import App from "./App";
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
<App/>
, document.getElementById('root')
);