import React from 'react'; import PropTypes from 'prop-types'; import { Link } from 'react-router' import { Container, Grid, Span } from 'react-responsive-grid' import { prefixLink } from 'gatsby-helpers' import includes from 'underscore.string/include' import { rhythm, adjustFontSizeTo } from 'utils/typography' import { colors, activeColors } from 'utils/colors' import { config } from 'config' import storybookLogo from '../../design/homepage/storybook-logo.png'; import './style.css'; const Header = ({ location }) => { const homeActive = location.pathname === prefixLink('/') const docsActive = includes(location.pathname, '/docs/') const examplesActive = includes(location.pathname, '/examples/') return (
{ homeActive ? null : ( Storybook Logo ) } Github Examples Docs
) } Header.propTypes = { location: PropTypes.object, } export default Header // const sections = [ // { id: 'home', caption: 'Home', href: '/' }, // { id: 'docs', caption: 'Docs', href: '/docs' }, // ]; // // class Header extends React.Component { // renderSections() { // return sections.map(section => { // const { currentSection } = this.props; // const className = currentSection === section.id ? 'selected' : ''; // // return ( // // {section.caption} // // ); // }); // } // // render() { // const { currentSection } = this.props; // let titleClassname = 'pull-left'; // if (currentSection === 'home') { // titleClassname += ' hide'; // } // // return ( // // ); // } // } // // Header.propTypes = { // currentSection: PropTypes.string, // }; // // export default Header;