Files
household-bot/apps/miniapp/src/index.tsx
whekin 94a5904f54 feat(miniapp): refine UI and add utility bill management
- Fix collapsible padding and button spacing
- Add subtotal to balance card
- Add utility bill management for admins
- Fix lints and type checks across the monorepo
- Implement rejectPendingHouseholdMember in repository and service
2026-03-13 05:52:34 +04:00

24 lines
477 B
TypeScript

/* @refresh reload */
import { QueryClientProvider } from '@tanstack/solid-query'
import { render } from 'solid-js/web'
import { miniAppQueryClient } from './app/query-client'
import './theme.css'
import './index.css'
import App from './App'
const root = document.getElementById('root')
if (!root) {
throw new Error('Root element not found')
}
render(
() => (
<QueryClientProvider client={miniAppQueryClient}>
<App />
</QueryClientProvider>
),
root
)