tcomb-form-native
tcomb-form-native copied to clipboard
Create tag input field
I am not able to create a tag input field
const Person = t.struct({ name: t.String, tags: t.list(t.String) // a list of strings });
const options = { fields: { // <= Person options tags: { item: { // <= options applied to each item in the list label: 'My tag' } } } });
i followed this could not get any result