diff --git a/client/src/aic/AICFormationDescriptorComponent.ts b/client/src/aic/AICFormationDescriptorComponent.ts deleted file mode 100644 index da194576..00000000 --- a/client/src/aic/AICFormationDescriptorComponent.ts +++ /dev/null @@ -1,18 +0,0 @@ -interface ComponentInterface { - "label" : string; - "value" : string; -} - -export class AICFormationDescriptorComponent implements ComponentInterface { - - label = "(not set)"; - value = "(not set)"; - - constructor( value:any, label?:string ) { - - this.label = label || "(not set)"; - this.value = value; - - } - -} \ No newline at end of file