mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-09 22:45:01 +00:00
803e49f787
Déplace: mon-entreprise/source/sites/publi.codes → publicodes/site mon-entreprise/source/sites/mon-entreprise.fr → mon-entreprise/source/site La config Webpack du site publicodes reste encore liée à celle de mon-entreprise.fr, il faudra la dissocier quand nous déplacerons le projet publicodes dans son propre dépôt.
10 lines
324 B
TypeScript
10 lines
324 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)
|