import React from 'react' import {withRouter} from 'react-router' import AccountPreview from '../Account/AccountPreview/AccountPreview' const AdminHeader = (props) => { return (
{ props.demo === true ?

Admin Place Demo!

:

Admin Place

} { !props.demo ? : null }
) } export default withRouter(AdminHeader)