FacePoke / client /src /index.tsx
jbilcke-hf's picture
jbilcke-hf HF staff
initial commit
d69879c
raw
history blame
159 Bytes
import { createRoot } from 'react-dom/client';
import { App } from './app';
const root = createRoot(document.getElementById('root')!);
root.render(<App />);