Last change
on this file since 364f27d 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
|
Rev | Line | |
---|
[364f27d] | 1 | import React from 'react';
|
---|
| 2 | import ReactDOM from 'react-dom/client';
|
---|
| 3 | import './index.css';
|
---|
| 4 | import App from './Components/App/App';
|
---|
| 5 | import reportWebVitals from './reportWebVitals';
|
---|
| 6 | import '../node_modules/bootstrap/dist/css/bootstrap.min.css';
|
---|
| 7 |
|
---|
| 8 | const root = ReactDOM.createRoot(document.getElementById('root'));
|
---|
| 9 | root.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
|
---|
| 18 | reportWebVitals();
|
---|
Note:
See
TracBrowser
for help on using the repository browser.