FacePoke / client /src /index.tsx
Last commit not found
raw
history blame
159 Bytes
import { createRoot } from 'react-dom/client';
import { App } from './app';
const root = createRoot(document.getElementById('root')!);
root.render(<App />);