ref(Notification.native): remove unnecessary View

The styles.actionColumn does not exist. It looks the same without the
extra View.
This commit is contained in:
paweldomas 2018-08-29 14:55:45 -05:00 committed by Любомир Маринов
parent 26d906fa46
commit 95785a9585
1 changed files with 5 additions and 7 deletions

View File

@ -88,13 +88,11 @@ class Notification extends AbstractNotification<Props> {
</View>
{
isDismissAllowed
&& <View style = { styles.actionColumn }>
<TouchableOpacity onPress = { this._onDismissed }>
<Icon
name = { 'close' }
style = { styles.dismissIcon } />
</TouchableOpacity>
</View>
&& <TouchableOpacity onPress = { this._onDismissed }>
<Icon
name = { 'close' }
style = { styles.dismissIcon } />
</TouchableOpacity>
}
</View>
);