import React from 'react'; import { components } from 'react-select'; import { OptionProps } from 'react-select/lib/components/Option'; export interface Props { children: Element; } export const PickerOption = (props: OptionProps) => { const { children, className } = props; return (
{children}
); }; export default PickerOption;