Remove unnecessary style array

This commit is contained in:
Brent Vatne 2018-07-16 18:09:59 -07:00
parent cab4d71a5e
commit cbd0958e6f

View File

@ -166,7 +166,7 @@ class Transitioner extends React.Component {
render() {
return (
<View onLayout={this._onLayout} style={[styles.main]}>
<View onLayout={this._onLayout} style={styles.main}>
{this.props.render(this._transitionProps, this._prevTransitionProps)}
</View>
);