/* @flow */ 'use strict'; import React from 'react'; import { bindActionCreators } from 'redux'; import { connect } from 'react-redux'; import * as LogActions from '../../actions/LogActions'; const Footer = (props: any): any => { return ( ); } export default connect( (state) => { return { } }, (dispatch) => { return { toggle: bindActionCreators(LogActions.toggle, dispatch), }; } )(Footer);