Abhijith Vijayan [FLUXON] 692a97d2c0 feat: initial rewrite
2025-06-23 02:22:09 +05:30

18 lines
406 B
TypeScript

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