fix(front): CookiesProvider
All checks were successful
Build and Deploy Go App / build (push) Successful in 5m35s
Build and Deploy Go App / deploy (push) Successful in 34s

This commit is contained in:
nihonium 2025-12-04 08:44:26 +03:00
parent 79a716cf55
commit 3be58457aa
Signed by: nihonium
GPG key ID: 0251623741027CFC

View file

@ -1,10 +1,13 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { CookiesProvider } from 'react-cookie'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
<CookiesProvider>
<App />
</CookiesProvider>
</StrictMode>,
)