change amount + pictures

This commit is contained in:
2026-03-14 23:54:37 +01:00
parent 2c72b8f47d
commit fda3e3ecbf
8 changed files with 220 additions and 117 deletions
+4 -1
View File
@@ -2,9 +2,12 @@ import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
import { CardProvider } from './store/CardContext' // <-- import your context provider
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
<CardProvider>
<App />
</CardProvider>
</StrictMode>,
)