22 lines
		
	
	
		
			462 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			462 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import React from 'react';
 | 
						|
 | 
						|
class RequestButton extends React.Component {
 | 
						|
  constructor() {
 | 
						|
    super();
 | 
						|
 | 
						|
    this.state = {textColor: 'white'};
 | 
						|
  }
 | 
						|
 | 
						|
  render() {
 | 
						|
    return (
 | 
						|
      <Text
 | 
						|
        style={{color: this.state.textColor}}
 | 
						|
        onEnter={() => this.setState({textColor: 'red'})}
 | 
						|
        onExit={() => this.setState({textColor: 'white'})}>
 | 
						|
        This text will turn red when you look at it.
 | 
						|
      </Text>
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
export default RequestButton; |