cleanup and styling , wip

This commit is contained in:
gingervitis
2020-12-29 14:47:31 -08:00
committed by Gabe Kangas
parent 78db81a8eb
commit f9b7a0d8e0
4 changed files with 23 additions and 15 deletions

View File

@@ -1,9 +1,9 @@
// TS types for elements on the Config pages
export interface TextFieldProps {
onUpdate: ({ fieldName, value }: UpdateArgs) => void;
handleResetValue: ({ fieldName }) => void;
fieldName: string;
initialValue: string;
initialValues: any;
type: string;
}