1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 04:05:01 +00:00
mon-entreprise/publicodes/site/entry.tsx

9 lines
323 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 App from './components/App'
const anchor = document.querySelector('#js')
render(<App />, anchor)