mirror of
https://github.com/strapi/strapi.git
synced 2025-11-05 04:13:36 +00:00
35 lines
701 B
JavaScript
35 lines
701 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';
|
||
|
|
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.header} /></p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
function mapDispatchToProps(dispatch) {
|
||
|
|
return {
|
||
|
|
dispatch,
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
export default connect(mapDispatchToProps)(ComingSoonPage);
|