2026-01-03 20:54:03 +05:30

18 lines
363 B
TypeScript

import {StrictMode} from 'react';
import {createRoot} from 'react-dom/client';
import Options from './Options';
const container = document.getElementById('options-root');
if (!container) {
throw new Error('Could not find root container to mount the app');
}
const root = createRoot(container);
root.render(
<StrictMode>
<Options />
</StrictMode>
);