10 lines
243 B
TypeScript
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 />);
|
|
|
|
|
|
|