Fix lint error

This commit is contained in:
Brent Vatne 2019-02-04 18:03:22 -08:00
parent fcde2bec71
commit 8e67358fe9
1 changed files with 2 additions and 4 deletions

View File

@ -8,9 +8,7 @@ class Screen extends React.Component {
}; };
render() { render() {
return ( return <View style={{ flex: 1, backgroundColor: 'red' }} />;
<View style={{ flex: 1, backgroundColor: 'red' }} />
)
} }
} }