index.tsx 269 B

12345678910111213141516
  1. import nut from "./nut";
  2. import demo from "./demo";
  3. export interface IRoute {
  4. path: string;
  5. component: any;
  6. }
  7. export interface IPlugin {
  8. routes: IRoute[];
  9. }
  10. const plugin: IPlugin = {
  11. routes: [...demo.routes, ...nut.routes],
  12. };
  13. export default plugin;