Open ghost opened 5 years ago
It would be nice to remove some useless backets on documentation code.
Example:
<TextInputMask type={'cpf'} value={this.state.cpf} onChangeText={text => { this.setState({ cpf: text }) }} />
It would be better a example like this
<TextInputMask type='cpf' value={this.state.cpf} onChangeText={text => { this.setState({ cpf: text }) }} />
I'm now working on that.
It would be nice to remove some useless backets on documentation code.
Example:
It would be better a example like this