11 lines
324 B
TypeScript
11 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)
|