#391 - New description property

This commit is contained in:
Elio Struyf
2022-09-16 16:47:32 +02:00
parent e455fa764b
commit efc230f81e
22 changed files with 139 additions and 58 deletions
+1
View File
@@ -3,5 +3,6 @@
export interface BaseFieldProps<T> {
label: string;
value: T | null;
description?: string;
required?: boolean;
}