Use ES Class Fields & Static Properties (currently stage 2) for improve class outlook. Added babel-plugin-transform-class-properties as a Babel plugin.
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			357 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			357 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import PropTypes from 'prop-types';
 | |
| 
 | |
| class Warning extends React.PureComponent {
 | |
| 
 | |
|   static propTypes = {
 | |
|     message: PropTypes.node.isRequired
 | |
|   };
 | |
| 
 | |
|   render () {
 | |
|     const { message } = this.props;
 | |
| 
 | |
|     return (
 | |
|       <div className='compose-form__warning'>
 | |
|         {message}
 | |
|       </div>
 | |
|     );
 | |
|   }
 | |
| 
 | |
| }
 | |
| 
 | |
| export default Warning;
 |