import React from 'react'; import PropTypes from 'prop-types'; import { AppBar } from 'react-toolbox'; import { Link } from 'react-router'; import Logo from '../logo'; import Navigation from '../navigation'; import style from './style.css'; const MainAppBar = (props) => { let className = style.appbar; if (props.className) className += ` ${props.className}`; return ( ); }; MainAppBar.propTypes = { className: PropTypes.string }; MainAppBar.defaultProps = { className: '' }; export default MainAppBar;