Files
homarr/src/components/modules/modules.tsx
Thomas "ajnart" Camlong 1dd74ea7da 🐛 Try to fix module compilation
2022-05-17 22:59:02 +02:00

12 lines
384 B
TypeScript

// This interface is to be used in all the modules of the project
// 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 IModule {
title: string;
description: string;
icon: React.ReactNode;
component: React.ReactNode;
props?: any;
}