Files
bflows-bandi-fe/src/index.js
Vitalii Kiiko b755c6e383 - temp fix: form field items from JS config;
- fixed displaying times for call;
- fixed reading saved flow;
2024-10-01 16:28:46 +02:00

17 lines
307 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(
<App/>
);
/*rootReact.render(
<React.StrictMode>
<App/>
</React.StrictMode>
);*/