2017-07-07 18:19:12 +02:00
|
|
|
/*
|
|
|
|
|
*
|
|
|
|
|
* ComingSoonPage
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
import Helmet from 'react-helmet';
|
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-08-17 15:39:09 +02:00
|
|
|
import messages from './messages.json';
|
2017-07-07 18:19:12 +02:00
|
|
|
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"
|
|
|
|
|
/>
|
2017-08-17 15:39:09 +02:00
|
|
|
<p><FormattedMessage {...messages.comingSoon} />.</p>
|
2017-07-07 18:19:12 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
|
|
|
return {
|
|
|
|
|
dispatch,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default connect(mapDispatchToProps)(ComingSoonPage);
|