14 lines
502 B
TypeScript
14 lines
502 B
TypeScript
import './../utils/meta'
|
|
import '../utils/webpack-public-path'
|
|
import './../infrastructure/error-reporter'
|
|
import '@/i18n'
|
|
import '../features/event-tracking'
|
|
import '../features/cookie-banner'
|
|
import '../features/link-helpers/slow-link'
|
|
import ReactDOM from 'react-dom'
|
|
import TemplateGalleryRoot from '../features/template-gallery/components/template-gallery-root'
|
|
|
|
const element = document.getElementById('template-gallery-root')
|
|
if (element) {
|
|
ReactDOM.render(<TemplateGalleryRoot />, element)
|
|
}
|