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.

10 lines
305 B

  1. import * as riot from 'riot'
  2. import AppUsers from './components/users.riot'
  3. import AppUsersForm from './components/users/form.riot'
  4. // register components for buckets
  5. riot.register('app-users', AppUsers)
  6. riot.mount('app-users')
  7. riot.register('app-users-form', AppUsersForm)
  8. riot.mount('app-users-form')