DineshSuram

Results 1 issues of DineshSuram

```jsx public componentDidMount() { const { animateOnDidMount } = this.props; if (animateOnDidMount) { InteractionManager.runAfterInteractions().then(() => { this.myMethod(this.props); }); } } ``` Iam using jest. I have created a component like...

Need More Information