(props: {
readonly left?: JSXElement;
readonly right?: JSXElement;
})
| 325 | }; |
| 326 | |
| 327 | const Actions = (props: { |
| 328 | readonly left?: JSXElement; |
| 329 | readonly right?: JSXElement; |
| 330 | }) => ( |
| 331 | <div class="actions"> |
| 332 | <div>{props.left}</div> |
| 333 | <div>{props.right}</div> |
| 334 | </div> |
| 335 | ); |
| 336 | |
| 337 | const AddTable = (props: OnDoneProp & TablesProps) => { |
| 338 | const has = useHasTableCallback(props.store); |
no outgoing calls
no test coverage detected
searching dependent graphs…