2025-12-06 15:18:25 +01:00

10 lines
243 B
TypeScript

import { createRoot } from 'react-dom/client';
import { StockDashboard } from './StockDashboard';
const rootElement = document.getElementById('root') || document.body;
const root = createRoot(rootElement);
root.render(<StockDashboard />);