/* @flow */ 'use strict'; import * as React from 'react'; import { bindActionCreators } from 'redux'; import { connect } from 'react-redux'; import { Route, withRouter } from 'react-router-dom'; import Header from '../common/Header'; import Footer from '../common/Footer'; import AccountTabs from './account/AccountTabs'; import AsideContainer from './aside'; import ModalContainer from '../modal'; import Notifications from '../common/Notification'; import Log from '../common/Log'; import type { State, Dispatch } from '../../flowtype'; type Props = { children: React.Node } const Content = (props: Props) => { return (
{ props.children }
); } const Wallet = (props: Props) => { return (
{ props.children }
); } export default withRouter( connect(null, null)(Wallet) );