// @flow import * as React from 'react'; import {withTheme} from 'react-native-paper'; import {Modalize} from "react-native-modalize"; function CustomModal(props) { const { colors } = props.theme; return ( {props.children} ); } export default withTheme(CustomModal);