📅  最后修改于: 2022-03-11 15:02:43.191000             🧑  作者: Mango
import React from "react";
import ReactDOM from "react-dom";
import Select from "react-select";
const options = [
{ value: "Abe", label: "Abe", customAbbreviation: "A" },
{ value: "John", label: "John", customAbbreviation: "J" },
{ value: "Dustin", label: "Dustin", customAbbreviation: "D" }
];
const formatOptionLabel = ({ value, label, customAbbreviation }) => (
{label}
{customAbbreviation}
);
const CustomControl = () => (
);
ReactDOM.render( , document.getElementById("root"));