Files
auditly/index.tsx
2025-09-23 13:35:21 -07:00

17 lines
333 B
TypeScript

import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './src/App';
import './index.css';
const rootElement = document.getElementById('root');
if (!rootElement) {
throw new Error("Could not find root element to mount to");
}
const root = ReactDOM.createRoot(rootElement);
root.render(
<App />
);