2023-01-13 11:46:56 -05:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom/client';
|
2022-12-21 14:38:26 -05:00
|
|
|
|
2023-01-13 11:46:56 -05:00
|
|
|
import './cms';
|
2022-12-21 14:38:26 -05:00
|
|
|
|
2023-01-13 11:46:56 -05:00
|
|
|
const root = ReactDOM.createRoot(document.getElementById('root'));
|
|
|
|
root.render(
|
|
|
|
<React.StrictMode>
|
|
|
|
<div />
|
|
|
|
</React.StrictMode>,
|
|
|
|
);
|