From b8ce86d783daada432cbc4153c77f593d775e202 Mon Sep 17 00:00:00 2001 From: Aj - Thomas Date: Tue, 10 May 2022 18:56:16 +0200 Subject: [PATCH] Update module interface --- components/modules/modules.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/modules/modules.tsx b/components/modules/modules.tsx index 11da5b84e..60ce7d55d 100644 --- a/components/modules/modules.tsx +++ b/components/modules/modules.tsx @@ -2,7 +2,7 @@ // Each module should have its own interface and call the following function: // TODO: Add a function to register a module // Note: Maybe use context to keep track of the modules -export interface MHPModule { +export interface IModule { title: string; description: string; icon: React.ReactNode;