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.

123456789101112
  1. from .contact import load_contact
  2. from .hotreload import load_hotreload
  3. from .login import load_login
  4. from .messages import load_messages
  5. from .register import load_register
  6. def load_components(core):
  7. load_contact(core)
  8. load_hotreload(core)
  9. load_login(core)
  10. load_messages(core)
  11. load_register(core)