import React from 'react'; import { View } from 'react-native'; import { UIViewProps } from './types'; const BottomFixedView = (props: UIViewProps) => { const { children, style } = props; return ( {children} ); }; export default BottomFixedView;