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.

24 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 {
7 years ago
constructor(props) {
super(props);
}
7 years ago
render() {
const { state, actions } = this.props;
return (
<Help {...actions} />
);
}
}
export default connect(state => ({
7 years ago
}), (dispatch) => ({
}))(HelpApp);