1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 07:19:41 +02:00
portainer/app/edge/react/index.ts

9 lines
233 B
TypeScript

import angular from 'angular';
import { componentsModule } from './components';
import { viewsModule } from './views';
export const reactModule = angular.module('portainer.edge.react', [
viewsModule,
componentsModule,
]).name;