source: frontend/src/index.js@ cb0881d

Last change on this file since cb0881d was cb0881d, checked in by MBK <marija.karapandzova@…>, 4 months ago

Set up React frontend and add design styles

  • Property mode set to 100644
File size: 299 bytes
Line 
1import React from 'react';
2import ReactDOM from 'react-dom/client';
3import './index.css';
4import './styles/design-system.css';
5import App from './App';
6
7const root = ReactDOM.createRoot(document.getElementById('root'));
8root.render(
9 <React.StrictMode>
10 <App />
11 </React.StrictMode>
12);
Note: See TracBrowser for help on using the repository browser.