spee.ch/client/containers/FourOhFourPage/index.jsx

12 lines
218 B
React
Raw Normal View History

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