implement Application and MarketingApp components, enhance routing and user context management (#194)

This commit is contained in:
Mohamad Tarbin
2026-08-06 23:57:08 -04:00
committed by GitHub
parent 0b4b21bbb0
commit 5fb0b5b656
10 changed files with 135 additions and 45 deletions

10
src/Application.jsx Normal file
View File

@@ -0,0 +1,10 @@
import App from './App.jsx'
import Contexts from './contexts/Contexts.jsx'
const Application = () => (
<Contexts>
<App />
</Contexts>
)
export default Application