import PropTypes from 'prop-types'; import React from 'react'; import { Link } from 'react-router'; import './style.css'; import storybookLogo from '../../design/homepage/storybook-logo.png'; const sections = [ { id: 'home', caption: 'Home', href: '/' }, { id: 'docs', caption: 'Docs', href: '/docs/react-storybook/basics/introduction/' }, ]; 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;