|
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 | |
|---|
| 1 | import React from 'react';
|
|---|
| 2 | import ReactDOM from 'react-dom/client';
|
|---|
| 3 | import './index.css';
|
|---|
| 4 | import './styles/design-system.css';
|
|---|
| 5 | import App from './App';
|
|---|
| 6 |
|
|---|
| 7 | const root = ReactDOM.createRoot(document.getElementById('root'));
|
|---|
| 8 | root.render(
|
|---|
| 9 | <React.StrictMode>
|
|---|
| 10 | <App />
|
|---|
| 11 | </React.StrictMode>
|
|---|
| 12 | );
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.