- started dashboard page, added first widget; - created new theme 'gepafin' - styles for the app;
14 lines
271 B
JavaScript
14 lines
271 B
JavaScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
import App from './App';
|
|
|
|
const rootEl = document.getElementById('root');
|
|
const rootReact = createRoot(rootEl);
|
|
|
|
rootReact.render(
|
|
<React.StrictMode>
|
|
<App/>
|
|
</React.StrictMode>
|
|
);
|