#369 - required fields

This commit is contained in:
Elio Struyf
2022-09-15 11:13:26 +02:00
parent c6273fa9c1
commit e455fa764b
41 changed files with 974 additions and 459 deletions
+7
View File
@@ -0,0 +1,7 @@
export interface BaseFieldProps<T> {
label: string;
value: T | null;
required?: boolean;
}