Files
bflows-bandi-fe/src/index.js
Vitalii Kiiko c09127a675 - added main layout, sidebar, toolbar;
- started dashboard page, added first widget;
- created new theme 'gepafin' - styles for the app;
2024-08-12 16:55:30 +02:00

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>
);