mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
|
import angular from 'angular';
|
||
|
|
||
|
import { EdgeScriptFormAngular } from './EdgeScriptForm';
|
||
|
|
||
|
export const componentsModule = angular
|
||
|
.module('app.edge.components', [])
|
||
|
.component('edgeScriptForm', EdgeScriptFormAngular).name;
|