You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
423 B

'use strict';
import React, {Component} from 'react';
import {bindActionCreators} from 'redux';
import Help from '../components/help';
import { connect } from 'react-redux';
class HelpApp extends Component {
constructor(props) {
super(props);
}
render() {
const { state, actions } = this.props;
return (
<Help {...actions} />
);
}
}
export default connect(state => ({
}), (dispatch) => ({
}))(HelpApp);