tcomb-form-native icon indicating copy to clipboard operation
tcomb-form-native copied to clipboard

Create tag input field

Open jkunwar opened this issue 6 years ago • 0 comments

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

jkunwar avatar May 30 '18 06:05 jkunwar