(props)
| 11 | |
| 12 | class Piano extends React.Component { |
| 13 | constructor(props) { |
| 14 | super(props); |
| 15 | this.state = { |
| 16 | pressedKeys: [], |
| 17 | }; |
| 18 | } |
| 19 | |
| 20 | playNote = (note) => { |
| 21 | if (!_.isEmpty(note)) { |
nothing calls this directly
no outgoing calls
no test coverage detected