1 2 3 4 5 6 7 8 9 10 | import React from 'react'; import ErrorPage from 'components/ErrorPage'; import connect from 'domain/connect'; export const ErrorPageHandler = (props) => <ErrorPage {...props} />; ErrorPageHandler.propTypes = { }; export default connect()(ErrorPageHandler); |