refactor(column): use context for manage column

This commit is contained in:
2023-12-29 13:12:37 +07:00
parent e1edba8a78
commit be333260f2
13 changed files with 125 additions and 176 deletions

View File

@@ -33,6 +33,13 @@ export interface WidgetGroupItem {
icon?: string;
}
export interface IColumn {
id?: string;
kind: number;
title: string;
content: string;
}
export interface WidgetProps {
id?: string;
account_id?: number;