selectControlWithProps.tsx 317 B

1234567891011121314
  1. import SelectControl, {
  2. ControlProps,
  3. } from 'sentry/components/forms/controls/selectControl';
  4. export type Option = {
  5. label: string;
  6. value: string;
  7. };
  8. function SelectControlWithProps(props: ControlProps & {options: Option[]}) {
  9. return <SelectControl {...props} />;
  10. }
  11. export default SelectControlWithProps;