importReact,{Component}from'react';import{AppRegistry,Text,View}from'react-native';classBlinkextendsComponent{constructor(props){super(props);this.state={showText:true};// Toggle the state every secondsetInterval(()=>{this.setState({showText:!this.state.showText});},1000);}render(){letdisplay=this.state.showText?this.props.text:' ';return(<Text>{display}</Text>);}}classBlinkAppextendsComponent{render(){return(<View><Blinktext='I love to blink'/><Blinktext='Yes blinking is so great'/><Blinktext='Why did they ever take this out of HTML'/><Blinktext='Look at me look at me look at me'/></View>);}}AppRegistry.registerComponent('BlinkApp',()=>BlinkApp);