(props: any)
| 4327 | } |
| 4328 | |
| 4329 | const CSSModuleExample = (props: any) => { |
| 4330 | const cssModule = { |
| 4331 | btn: 'hash', |
| 4332 | }; |
| 4333 | |
| 4334 | return ( |
| 4335 | <Button color="secondary" cssModule={cssModule}> |
| 4336 | Button |
| 4337 | </Button> |
| 4338 | ); |
| 4339 | }; |
| 4340 | |
| 4341 | class Example107 extends React.Component { |
| 4342 | private input: HTMLInputElement | null; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…