feat: bootstrap walking skeleton

This commit is contained in:
ginnoir
2026-06-11 17:06:52 -05:00
commit ec8f857845
44 changed files with 6677 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import './index.css';
import { App } from './ui/App';
const root = document.getElementById('root');
if (!root) {
throw new Error('Root element #root not found');
}
createRoot(root).render(
<StrictMode>
<App />
</StrictMode>,
);