import React from 'react'; import PropTypes from 'prop-types'; import withRedux from 'next-redux-wrapper'; import initialState from '../store'; import BodyWrapper from '../components/BodyWrapper'; import Footer from '../components/Footer'; import { authUser } from '../actions'; import Settings from '../components/Settings'; const SettingsPage = ({ isAuthenticated }) => ( {isAuthenticated ? : null}