import React, { forwardRef } from 'react'; import { View, Pressable } from 'react-native'; import type { SwiperItemProps } from './type'; const SwiperItem = forwardRef((props, ref) => { const { children, ...rest } = props; return ( {children} ); }); export default SwiperItem;