Star ratings Formik component
npm install --save form-ratings
Please see here for a live demo!
The following would be placed inside a <Formik />
form:
import React from 'react'
import { Field } from 'formik';
import FormRatings from 'form-ratings'
function Example() {
return (
<Field as={FormRatings} />
);
}
Please see the code in the example/
directory for more information.
In one tab, run the rollup watcher:
npm start
In another tab, run the create-react-app development server:
cd example && npm start
MIT © felamaslen