mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-25 01:28:16 +00:00
* MaskedViewIOS use broke react-native-web support, this fixes it. * Fallback more gracefully. * Actually return the value ...
7 lines
182 B
JavaScript
7 lines
182 B
JavaScript
import React from 'react';
|
|
import { BackHandler, View } from 'react-native';
|
|
|
|
const MaskedViewIOS = () => <View>{this.props.children}</View>;
|
|
|
|
export { BackHandler, MaskedViewIOS };
|