index.tsx 876 B

123456789101112131415161718192021222324252627282930313233343536
  1. import { IPlugin } from "..";
  2. const plugin: IPlugin = {
  3. routes: [
  4. {
  5. path: "/users/forgot-password",
  6. component: () => import("./users/forgot-password"),
  7. },
  8. {
  9. path: "/users/unlock",
  10. component: () => import("./users/unlock"),
  11. },
  12. {
  13. path: "/users/confirm",
  14. component: () => import("./users/confirm"),
  15. },
  16. {
  17. path: "/users/sign-in",
  18. component: () => import("./users/sign-in"),
  19. },
  20. {
  21. path: "/users/sign-up",
  22. component: () => import("./users/sign-up"),
  23. },
  24. {
  25. path: "/install",
  26. component: () => import("./install"),
  27. },
  28. {
  29. path: "/",
  30. component: () => import("./home"),
  31. },
  32. ],
  33. };
  34. export default plugin;