“Dodanie statu w JSX” Kod odpowiedzi

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

React If If

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

Dodanie statu w JSX

render() {
    return (   
        <View style={styles.container}>
            {this.state.value == 'news'? <Text>data</Text>: null }
        </View>
    )
}
Marty McFly

Odpowiedzi podobne do “Dodanie statu w JSX”

Pytania podobne do “Dodanie statu w JSX”

Więcej pokrewnych odpowiedzi na “Dodanie statu w JSX” w JavaScript

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

Przeglądaj inne języki kodu