Files
hotel-demo-front/src/main.jsx
Romain Mallard 98b3bb378b
All checks were successful
Deploy React / build-and-deploy (push) Successful in 16s
testing the CD worflow
2026-02-23 18:33:49 +01:00

12 lines
252 B
JavaScript

import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<p>test deploy</p>
<App />
</StrictMode>,
)