TigerTrading's picture
fix all
6e81cb0 verified
raw
history blame contribute delete
251 Bytes
import { UnifiedDockFireApp } from './components/app.js';
import { createRoot } from 'react-dom/client';
// Initialize the app
const container = document.getElementById('root');
const root = createRoot(container);
root.render(<UnifiedDockFireApp />);