1.0.9 • Published 2 years ago

react-ui-chip-input v1.0.9

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

react-chip-input-component

Provides a chip input component.

Demo

GIF Example

Install

npm i react-ui-chip-input

Example

import React, { useState } from 'react'

import {Chip} from 'react-ui-chip-input'

const ReactChips = () => {
  const [chips, setChips] = useState([])

  return (
    <div className='container'>
      <Chip
        placeholder='Type and Enter'
        chips={chips}
        setChips={setChips}
        chipPrefix='#'
      />
    </div>
  )
}

export default ReactChips
1.0.9

2 years ago

1.0.8

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago