Added more modules
Some checks failed
ci / ci (22, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
2026-04-19 18:42:34 +01:00
parent 1e8cf0cb78
commit 08bb142c0a
9 changed files with 132 additions and 5 deletions

View File

@@ -4,5 +4,5 @@ export interface DashboardModule {
name: string;
width: number; // Number of grid columns to span
height: number; // Number of grid rows to span
render: () => VNode | any;
render: (params: Record<string, any>) => VNode | any;
}