Initial commit - added initial skeletal files

This commit is contained in:
Zhongheng Liu 2023-12-19 19:55:24 +02:00
commit 884c5dce98
No known key found for this signature in database
7 changed files with 11 additions and 62 deletions

View file

@ -2,7 +2,6 @@ import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
@ -11,9 +10,4 @@ root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// 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();
);