source: RebuMKReact/src/index.js

Last change on this file was 364f27d, checked in by MetodiMladenovski <meto.18@…>, 14 months ago

added projects and db scripts

  • Property mode set to 100644
File size: 613 bytes
RevLine 
[364f27d]1import React from 'react';
2import ReactDOM from 'react-dom/client';
3import './index.css';
4import App from './Components/App/App';
5import reportWebVitals from './reportWebVitals';
6import '../node_modules/bootstrap/dist/css/bootstrap.min.css';
7
8const root = ReactDOM.createRoot(document.getElementById('root'));
9root.render(
10 <React.StrictMode>
11 <App />
12 </React.StrictMode>
13);
14
15// If you want to start measuring performance in your app, pass a function
16// to log results (for example: reportWebVitals(console.log))
17// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
18reportWebVitals();
Note: See TracBrowser for help on using the repository browser.