mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 03:43:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			711 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			711 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/*
 | 
						|
 *
 | 
						|
 * ComingSoonPage
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
import React from 'react';
 | 
						|
import { connect } from 'react-redux';
 | 
						|
import Helmet from 'react-helmet';
 | 
						|
import { FormattedMessage } from 'react-intl';
 | 
						|
import messages from './messages.json';
 | 
						|
import styles from './styles.scss';
 | 
						|
 | 
						|
export class ComingSoonPage extends React.Component { // eslint-disable-line react/prefer-stateless-function
 | 
						|
  render() {
 | 
						|
    return (
 | 
						|
      <div className={styles.wrapper}>
 | 
						|
        <Helmet
 | 
						|
          title="Coming soon"
 | 
						|
        />
 | 
						|
        <p><FormattedMessage {...messages.comingSoon} />.</p>
 | 
						|
      </div>
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
function mapDispatchToProps(dispatch) {
 | 
						|
  return {
 | 
						|
    dispatch,
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
export default connect(mapDispatchToProps)(ComingSoonPage);
 |