1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 22:45:01 +00:00
mon-entreprise/publicodes/site/entry.tsx
2021-03-23 10:59:38 +01:00

10 lines
358 B
TypeScript

// TODO: The webpack configuration of the publi.codes site remains in the
// mon-entreprise.fr and should be dissociated.
import 'core-js/stable'
import { render } from 'react-dom'
import 'regenerator-runtime/runtime'
import '../../removeServiceWorker'
import App from './components/App'
const anchor = document.querySelector('#js')
render(<App />, anchor)