import React from "react"; import PropTypes from "prop-types"; import { List } from "immutable"; export const PolochonSelect = ({ value, changeValue, polochonList }) => { return ( ); }; PolochonSelect.propTypes = { value: PropTypes.string, changeValue: PropTypes.func, polochonList: PropTypes.instanceOf(List), };