hosting: fix notification on reserve

This commit is contained in:
tylen
2025-10-29 16:09:41 +02:00
parent 13ae6c6942
commit 8771e859fd
4 changed files with 105 additions and 15 deletions

View File

@@ -2,9 +2,10 @@ import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
import { NotificationProvider } from './NotificationContext.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
<NotificationProvider><App/></NotificationProvider>
</StrictMode>,
)