UNPKG

@uiw/react-native

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