I want to add my project on Hactoberfest to accept some contributions from the Developers community. Till now have worked alone on this and I want it to grow, and that can be possible with some more minds included in it.
How can I list my project in Hactoberfest?
Project Repository: https://github.com/gkhan205/formify-react
gkhan205 / formify-react
React Form, which generates, validates, and populates data considering your API requirement. Just send an Array Model to the form and let it handle everything for you.
formify-react
Last form component you will need for you application which works with only a JSON you pass rest it will handle everything
Installation
Usage
Props
Example Form Field
Form Fields
Supported Input Fields
Validators
Upcoming
Contributing
Install
#npm
npm i -S formify-react
#yarn
yarn add formify-react
Usage
import React, { Component, createRef } from 'react'
import Form from 'formify-react'
import 'formify-react/dist/index.css'
import { formConstants } from './config'
const budgetData = [
{ value: 5000, label: '$5000' },
{ value: 15000, label: '$15000' },
{ value: 25000, label: '$25000' },
{ value: 35000, label: '$35000' },
{ value: 50000, label: '$50000' }
]
class Example extends Component {
formRef = createRef()
handleSave = () => {
const { current } = this.formRef
β¦
Top comments (2)
hacktoberfest
to your repo. That's the new opt-in mechanism for fighting PR spamFYI the way I handle that I create issues that don't need a lot of context, label them with "good first issue" using an issue template which starts by asking people to read the CONTRIBUTING guide
Worked really well so far, I'm happy to report that in a couple of days, I got 7 meaningfull pull requests and 0 spam.
Thank you. I'll do this right away. Thanks a lot. πβΊοΈπ