“React If If” Kod odpowiedzi

TERNARY REACT

render() {
  const isLoggedIn = this.state.isLoggedIn;
  return (
    <div>
      The user is <b>{isLoggedIn ? 'currently' : 'not'}</b> logged in.    
	</div>
  );
}
Jittery Jaguar

Jak używać, jeśli jeszcze w JSX w React

renderElement(){
   if(this.state.value == 'news')
      return <Text>data</Text>;
   return null;
}

render() {
    return (   
        <View style={styles.container}>
            { this.renderElement() }
        </View>
    )
}
Busy Bear

Jeśli jeszcze JSX

render() {
  const isLoggedIn = this.state.isLoggedIn;
  return (
    <div>
      {isLoggedIn
        ? <LogoutButton onClick={this.handleLogoutClick} />
        : <LoginButton onClick={this.handleLoginClick} />
      }
    </div>
  );
}
Smiling Salamander

React If If

render() {
  const isLoggedIn = this.state.isLoggedIn;
  return (
    <div>
      The user is <b>{isLoggedIn ? 'currently' : 'not'}</b> logged in.    </div>
  );
}
Thoughtless Toucan

React Native Warunkowe renderowanie warunkowe

function Mailbox(props) {
  const unreadMessages = props.unreadMessages;
  return (
    <div>
      <h1>Hello!</h1>
      {unreadMessages.length > 0 &&
        <h2>
          You have {unreadMessages.length} unread messages.
        </h2>
      }
    </div>
  );
}
Coder Cuttlefish

Jeśli jeszcze reaguje renderowanie w JSC

const functionalComponent=()=> {

  return (
    <div>{
  			  props.isFeatured ? (
                        <div className="featured_ovelay_icon">lol</div>

                    ) : ("")
 			}
    </div>
  );
}
diptnc

Odpowiedzi podobne do “React If If”

Pytania podobne do “React If If”

Więcej pokrewnych odpowiedzi na “React If If” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu