11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
import './style.css'
|
|
import '@riotjs/hot-reload'
|
|
import { mount } from 'riot'
|
|
import registerGlobalComponents from './register-global-components'
|
|
|
|
// register
|
|
registerGlobalComponents()
|
|
|
|
// mount all the global components found in this page
|
|
mount('[data-riot-component]')
|