(props: ButtonProps)
| 22 | }); |
| 23 | |
| 24 | export function Button(props: ButtonProps) { |
| 25 | let ref = useRef(null); |
| 26 | return <RACButton {...props} ref={ref} className={buttonStyle} style={pressScale(ref)} />; |
| 27 | } |
nothing calls this directly
no test coverage detected