How can I add my project on Hacktoberfest to accept contributions

Ghazi Khan - Oct 5 '20 - - Dev Community

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

GitHub logo 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

NPM JavaScript Style Guide License Bundle Size

Installation
Usage
Props
Example Form Field
Form Fields
Supported Input Fields
Validators
Upcoming
Contributing

Edit formify-react

Install

#npm
npm i -S formify-react
#yarn
yarn add formify-react
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player