import React from 'react'; import { PropTypes } from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import brand from 'ba-api/brand'; import logo from 'ba-images/logo.svg'; import { Hidden } from '@material-ui/core'; import styles from './appStyles-jss'; function Outer(props) { const { classes, children, } = props; return (
{brand.name}

{brand.name}

{children}
); } Outer.propTypes = { classes: PropTypes.object.isRequired, children: PropTypes.node.isRequired, }; export default (withStyles(styles)(Outer));