Justin Haaheim
[Streaming] Pre-launch cleanup of streaming-react-app and seamless_server (#170)
42d9c16
raw
history blame
219 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.tsx';
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);