Closed michaelVictoriaDev closed 5 years ago
my code looks like this
<TagInput maxHeight={'100%'} inputDefaultWidth={'75%'} style={{paddingLeft: 10, paddingBottom: 2 }} editable={false} value={this.state.to} onChange={(to) => this.setState({ to })} labelExtractor={(email) => email} style={{ paddingLeft: 10, paddingBottom: 2 }} />
you can see the screen shot there's a editable={false} which I assume that there's no start typing placeholder,
editable={false}
I found a solution inputProps={{ placeholder: ' ' , multiline: true }}
my code looks like this
you can see the screen shot there's a
editable={false}
which I assume that there's no start typing placeholder,