app.tsx 208 Bytes
import { createRoot } from 'react-dom/client';
import App from '@/hr/App';
// Render your React component instead
const root = createRoot(document.getElementById('app') as HTMLElement);
root.render(<App />);