Scaffolded the OpenBudget app structure with initial pages, components, and data. Included features for compare, reform design, and about sections. Added base utilities, design system, and data handling modules.
This commit is contained in:
15
openbudget-app-scaffold/src/main.tsx
Normal file
15
openbudget-app-scaffold/src/main.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
import React from 'react'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
import { RouterProvider } from 'react-router-dom'
|
||||
import { router } from './app/routes'
|
||||
import { AppProviders } from './app/providers'
|
||||
import { ErrorBoundary } from './app/ErrorBoundary';
|
||||
import './styles.css'
|
||||
createRoot(document.getElementById('root')!).render(
|
||||
<React.StrictMode>
|
||||
<AppProviders>
|
||||
<RouterProvider router={router} />
|
||||
</AppProviders>
|
||||
</React.StrictMode>
|
||||
)
|
||||
Reference in New Issue
Block a user