mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
|
import angular from 'angular';
|
||
|
|
||
|
import { componentsModule } from './components';
|
||
|
import { viewsModule } from './views';
|
||
|
|
||
|
export const reactModule = angular.module('portainer.azure.react', [
|
||
|
viewsModule,
|
||
|
componentsModule,
|
||
|
]).name;
|