import * as React from 'react' import * as ReactDOM from 'react-dom/client' import { createBrowserRouter, RouterProvider } from 'react-router-dom' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { ReactQueryDevtools } from '@tanstack/react-query-devtools' import './index.css' import ErrorPage from './error-page' import Root, { loader as rootLoader } from './routes/root' import Contact, { loader as contactLoader, action as contactAction, } from './routes/contact' import EditContact, { action as editAction } from './routes/edit' import { action as destroyAction } from './routes/destroy' import Index from './routes/index' import NewContact, { action as newAction } from './routes/new' const queryClient = new QueryClient({ defaultOptions: { queries: { staleTime: 1000 * 10, }, }, }) const router = createBrowserRouter([ { path: '/', element: , errorElement: , loader: rootLoader(queryClient), children: [ { index: true, element: , }, { path: 'contacts/new', element: , action: newAction(queryClient), errorElement: , }, { path: 'contacts/:contactId', element: , loader: contactLoader(queryClient), action: contactAction(queryClient), errorElement: , }, { path: 'contacts/:contactId/edit', element: , loader: contactLoader(queryClient), action: editAction(queryClient), errorElement: , }, { path: 'contacts/:contactId/destroy', element: , action: destroyAction(queryClient), errorElement: , }, ], }, ]) const rootElement = document.getElementById('root') ReactDOM.createRoot(rootElement!).render( , )