import React, { memo } from 'react'; import { Animated } from 'react-native'; import { ViewStyle, StyleProp } from 'react-native'; type ModalViewsProps = { propStyle?: StyleProp; } const ModalViews: React.FC = ({ propStyle }) => { return ( hello ); }; export default memo(ModalViews, () => { return false; });