Fix admin SQL count parsing for local SpacetimeDB
This commit is contained in:
18
apps/admin-web/src/main.tsx
Normal file
18
apps/admin-web/src/main.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import './styles/admin.css';
|
||||
|
||||
import {StrictMode} from 'react';
|
||||
import {createRoot} from 'react-dom/client';
|
||||
|
||||
import {AdminApp} from './app/AdminApp';
|
||||
|
||||
const rootElement = document.getElementById('root');
|
||||
|
||||
if (!rootElement) {
|
||||
throw new Error('Missing #root container');
|
||||
}
|
||||
|
||||
createRoot(rootElement).render(
|
||||
<StrictMode>
|
||||
<AdminApp />
|
||||
</StrictMode>,
|
||||
);
|
||||
Reference in New Issue
Block a user