Structural cleanup
ci/woodpecker/push/woodpecker Pipeline was successful

- Rename src/store/ -> src/context/ (store implies Redux, this is React Context)
- Rename services/api.jsx -> api.js (file contains no JSX)
- Delete unused Vite boilerplate: src/assets/, App.css
- Update all imports accordingly
This commit is contained in:
2026-05-15 21:34:51 +02:00
parent e589b18a0b
commit 90932964a5
10 changed files with 4 additions and 7 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ 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
import { CardProvider } from './context/CardContext'
createRoot(document.getElementById('root')).render(
<StrictMode>