Files
Shade/packages/shade-dashboard/src/main.tsx

13 lines
298 B
TypeScript
Raw Normal View History

2026-04-10 19:00:21 +02:00
import React from 'react';
import { createRoot } from 'react-dom/client';
import { App } from './App.js';
const container = document.getElementById('root');
if (!container) throw new Error('Missing #root');
createRoot(container).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);