File size: 320 Bytes
04e85f3 |
1 2 3 4 5 6 7 8 9 10 |
import React from 'react';
import { createRoot } from 'react-dom/client';
import Options from './Options';
import './index.css';
const container = document.getElementById('app-container');
const root = createRoot(container); // createRoot(container!) if you use TypeScript
root.render(<Options title={'Settings'} />);
|