spee.ch/client/src/pages/FourOhFourPage/index.jsx
2018-05-22 19:06:37 -07:00

11 lines
218 B
JavaScript

import { connect } from 'react-redux';
import View from './view';
const mapStateToProps = ({ site: { host, title } }) => {
return {
host,
title,
};
};
export default connect(mapStateToProps, null)(View);