(property: Property)
| 11 | } |
| 12 | |
| 13 | export default function SelectStringButton(property: Property) { |
| 14 | return ( |
| 15 | <SelectMapButton |
| 16 | allowEmpty={property.allowEmpty} |
| 17 | className={property.className} |
| 18 | isAdd={property.isAdd} |
| 19 | itemzz={property.itemzz.map((item) => [item, item])} |
| 20 | value={property.value} |
| 21 | verb={property.verb} |
| 22 | change={property.change} |
| 23 | ></SelectMapButton> |
| 24 | ) |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected