| 4 | import Checkbox from "./checkbox"; |
| 5 | |
| 6 | export interface SelectBoxWithDropdownOption { |
| 7 | id: string | null; |
| 8 | name: string; |
| 9 | checked: boolean; |
| 10 | onChange: (checked: boolean) => void; |
| 11 | } |
| 12 | |
| 13 | export default function SelectBoxOptionDropdownWithCheckboxes(props: { |
| 14 | title: string; |
nothing calls this directly
no outgoing calls
no test coverage detected