3 pontos reagem
<Modal {...this.props} title='Modal heading' animation={false}>
Cruel Cod
<Modal {...this.props} title='Modal heading' animation={false}>
var arr1 = [1,2,3];
var arr2 = [4,5,6];
arr1 = [...arr1, ...arr2];
console.log(arr1); //[1, 2, 3, 4, 5, 6]
Run code snippetHide results
<View style={{ height: 1, width: '100%', borderRadius: 1, borderWidth: 1, borderColor: 'red', borderStyle: 'dotted' }} />