add label and helpText option for MemberNameTagGroup component

This commit is contained in:
Florian Scholdei
2019-10-07 14:15:27 +02:00
parent e74697375d
commit 51818d8ffb

View File

@@ -7,6 +7,8 @@ import TagGroup from "./TagGroup";
type Props = {
members: string[],
memberListChanged: (string[]) => void,
label?: string,
helpText?: string,
t: string => string
};