import React from "react"; import _ from "lodash"; import { Multiselect } from "../../"; const items = _.range(30).map(i => { return { id: i, text: `Text ${i}` }; }); export default ( <>