add new custom page: recupero-proposta-cct-da-contratti

This commit is contained in:
2026-07-13 18:48:54 +02:00
parent 8412a0ab41
commit 0de10445f6
13 changed files with 3751 additions and 0 deletions
@@ -0,0 +1,13 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
const rootElement = document.getElementById('root')
if (!rootElement) throw new Error('Root element not found')
createRoot(rootElement).render(
<StrictMode>
<App />
</StrictMode>,
)