You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
576 B

  1. import * as riot from 'riot'
  2. import AppUsers from './components/users.riot'
  3. import AppUsersForm from './components/users/form.riot'
  4. import AppSidebarButton from './components/sidebar-button.riot'
  5. import AppLoading from './components/loading.riot'
  6. // register components for buckets
  7. riot.register('app-users', AppUsers)
  8. riot.mount('app-users')
  9. riot.register('app-users-form', AppUsersForm)
  10. riot.mount('app-users-form')
  11. riot.register('app-sidebar-button', AppSidebarButton)
  12. riot.mount('app-sidebar-button')
  13. riot.register('app-loading', AppLoading)
  14. riot.mount('app-loading')