/* @flow */ import React from 'react'; import { bindActionCreators } from 'redux'; import { connect } from 'react-redux'; import * as LogActions from '~/js/actions/LogActions'; import type { State, Dispatch } from '~/flowtype'; type Props = { toggle: typeof LogActions.toggle } const Footer = (props: Props): React$Element => ( ); export default connect( (state: State) => ({ }), (dispatch: Dispatch) => ({ toggle: bindActionCreators(LogActions.toggle, dispatch), }), )(Footer);