Skip to content

Instantly share code, notes, and snippets.

View marekciupak's full-sized avatar

Marek Ciupak marekciupak

  • Krakow, Poland
View GitHub Profile
@leocristofani
leocristofani / RFReactSelect.js
Last active June 8, 2020 14:59
How to integrate React Select with Redux Form
import React, { PropTypes } from 'react';
import Select from 'react-select';
import 'react-select/dist/react-select.css';
RFReactSelect.defaultProps = {
multi: false,
className: ""
};
RFReactSelect.propTypes = {