moving online

This commit is contained in:
QkoSad
2022-11-07 19:37:10 +02:00
parent 8918854436
commit ac917e6e26
26 changed files with 1829 additions and 133 deletions
+9 -16
View File
@@ -1,17 +1,10 @@
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'));
import ReactDOM from "react-dom/client";
import React from "react";
import App from "./App";
import './index.css'
const container = document.getElementById('root')
const root = ReactDOM.createRoot(container)
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();
<React.StrictMode>
<App />
</ React.StrictMode>)