initial commit

This commit is contained in:
plebbitor
2023-01-30 12:27:38 +01:00
parent 8b3f2368c4
commit 152dcfdb1e
10 changed files with 3 additions and 113 deletions
+2 -14
View File
@@ -1,17 +1,5 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import ReactDOM from 'react-dom';
import App from './App';
import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
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();
ReactDOM.render(<App />, document.getElementById('root'));