/* @flow */ 'use strict'; 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 => { return ( ); } export default connect( (state: State) => { return { } }, (dispatch: Dispatch) => { return { toggle: bindActionCreators(LogActions.toggle, dispatch), }; } )(Footer);