(props: ModelSelectorDialogProps)
| 59 | export type ModelSelectorDialogProps = ComponentProps<typeof CommandDialog>; |
| 60 | |
| 61 | export const ModelSelectorDialog = (props: ModelSelectorDialogProps) => ( |
| 62 | <CommandDialog {...props} /> |
| 63 | ); |
| 64 | |
| 65 | export type ModelSelectorInputProps = ComponentProps<typeof CommandInput>; |
| 66 |
nothing calls this directly
no outgoing calls
no test coverage detected