import { Select } from "antd";

export const SelectOption = (props) => {
  const { children, ...rest } = props;

  return <Select.Option {...rest}>{children}</Select.Option>;
};
