import React from 'react'; import { View } from 'react-native'; import { BottomSheetStyle } from '../styles'; import type { BottomSheetProps } from '../types'; interface MemoizedContentProps { props: BottomSheetProps; } const MemoizedContent = React.memo(({ props }: MemoizedContentProps) => { return ( {props.children} ); }); export default MemoizedContent;