(props)
| 372 | // for some reason this causes children to be inferred as being 'ReactNode & {}' which makes the spread |
| 373 | // invalid. TS3.2 bug? |
| 374 | const CustomButton: React.SFC<CustomButtonProps> = (props) => ( |
| 375 | <Button {...props} /> |
| 376 | ); |
| 377 | |
| 378 | class Example14 extends React.Component<any, any> { |
| 379 | state: any; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…