Ken
Results
2
comments of
Ken
> You can achieve this using refs: > > ``` > class MyComponent extends Component { > constructor(props) { > super(props); > this.dropdownRef = React.createRef(); > } > > componentDidMount()...
I was facing the same issue yesterday. Now I managed to solve it. TL;DR The data for epoxy have to be different with the data source. So, what I do...