2017-01-20 11:47:39 +01:00

39 lines
916 B
JavaScript

/*
* HomePage
*/
import React from 'react';
import { connect } from 'react-redux';
import { createStructuredSelector } from 'reselect';
import Container from 'components/Container';
import { injectIntl } from 'react-intl';
import styles from './styles.scss';
export class HomePage extends React.Component {
render() {
return (
<div>
<div className={`container-fluid ${styles.containerFluid}`}>
<Container>
<p>Nothing to do here.</p>
<p>To edit your content's entries go to the specific link in the left menu.</p>
</Container>
</div>
</div>
);
}
}
HomePage.propTypes = {};
export function mapDispatchToProps() {
return {};
}
const mapStateToProps = createStructuredSelector({});
// Wrap the component to inject dispatch and state into it
export default connect(mapStateToProps, mapDispatchToProps)(injectIntl(HomePage));