neptune-web
feature(#72): improve the select item functionality and UI/UX
04e85f3
raw
history blame contribute delete
320 Bytes
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'} />);