()
| 10 | class UserInput extends Component { |
| 11 | |
| 12 | constructor() { |
| 13 | super(); |
| 14 | this.state = { |
| 15 | inputActive: false, |
| 16 | inputHasText: false, |
| 17 | emojiPickerIsOpen: false, |
| 18 | emojiFilter: '' |
| 19 | }; |
| 20 | } |
| 21 | |
| 22 | componentDidMount() { |
| 23 | this.emojiPickerButton = document.querySelector('#sc-emoji-picker-button'); |
nothing calls this directly
no outgoing calls
no test coverage detected