spee.ch/client/src/pages/FourOhFourPage/index.jsx

12 lines
218 B
React
Raw Normal View History

2018-05-23 04:06:37 +02:00
import { connect } from 'react-redux';
import View from './view';
const mapStateToProps = ({ site: { host, title } }) => {
return {
host,
title,
};
};
export default connect(mapStateToProps, null)(View);