exact-resistor-calculator/src/containers/helpApp.js
2017-02-01 23:44:21 -07:00

24 lines
423 B
JavaScript

'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);