(props: ActionsProps)
| 198 | } |
| 199 | |
| 200 | function Actions(props: ActionsProps) { |
| 201 | return ( |
| 202 | <div className="actions"> |
| 203 | {props.actions.map((action, i) => { |
| 204 | if (action.iconButtonProps) { |
| 205 | return ( |
| 206 | <IconButton key={i} {...action.iconButtonProps} /> |
| 207 | ); |
| 208 | } |
| 209 | if (action.element) { |
| 210 | return action.element; |
| 211 | } |
| 212 | })} |
| 213 | </div> |
| 214 | ); |
| 215 | } |
nothing calls this directly
no outgoing calls
no test coverage detected