Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 318 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 318 Bytes

react-dropown

A React component for custom dropdown

Usage

import { DropDown } from '@thisisabdus/react-dropdown';

<DropDown
  onOptionSelect={e => console.log(e.value)}
  options={['React', 'Node', 'Angular', 'Express']}
  color='#fff'
  backgroundColor='#141414'
  ddMenuBackgroundColor='pink'
/>;