feat: Implement BolsaLocalWidget and configure API CORS

This commit is contained in:
2025-07-01 13:26:46 -03:00
parent 5e9270eda7
commit 4cfb248f54
22 changed files with 4823 additions and 0 deletions

9
frontend/src/main.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)