From 8f859692dceac1e00fe568ab19ed439a47762f51 Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Thu, 16 Mar 2023 15:56:59 +0100 Subject: [PATCH] Delete AICFormationDescriptorComponent.ts --- .../src/aic/AICFormationDescriptorComponent.ts | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 client/src/aic/AICFormationDescriptorComponent.ts 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