import React, { Component } from 'react'; import Select, { components } from 'react-select'; import { colourOptions } from '../data'; const controlStyles = { borderRadius: '1px solid black', padding: '5px', background: colourOptions[2].color, color: 'white', }; const ControlComponent = props => (
{

Custom Control

}
); type State = {}; export default class CustomControl extends Component<*, State> { state = {}; render() { return (