React Select-Box using Typescript

This is a react based select-box component developed using Typescript.

Snapshot

Snapshot of SelectBoxes

Features

interface Props extends React.Props<SelectBox> {
    label : string;
    value: number;
};

Usage

Basic:

<SelectBox
  label="Development Status ?"
  value={2}
>
    <MenuItem itemValue={1} primaryText="Completed" />
    <MenuItem itemValue={2} primaryText="Active" />
    <MenuItem itemValue={3} primaryText="Deprecated" />
</SelectBox>

React TypeScript Checkbox

To install dependencies

npm install

To run in development mode

npm start

To build the pages

npm run build

Contributing

Contributions are always welcome. Just send a pull request. Feel free to contact me GitHub.

License

MIT License