UNPKG

@uiw/react-native

Version:
11 lines 214 B
import React from 'react'; import Rating from '../../Rating'; const Rate = ({ onChange, ...others }) => { return <Rating onPress={value => { onChange?.(value); }} {...others} />; }; export default Rate;