Aditya Verma

Results 1 issues of Aditya Verma

Consider the following example Screen one ``` class LoadingScreen extends React.Component { componentDidMount() { setTimeout(() => { if (this.props.hasLoggedIn && this.props.hasDevices) { this.props.navigation.navigate("Main"); } else if (this.props.hasLoggedIn && !this.props.hasDevices) {...