import React from 'react'; import { Nav, Navbar, NavItem } from 'react-bootstrap'; import navLinks from './links.json'; import FCCNavItem from './NavItem.jsx'; const fCClogo = 'https://s3.amazonaws.com/freecodecamp/freecodecamp_logo.svg'; const navElements = navLinks.map((navItem, index) => { return ( { navItem.content } ); }); const logoElement = ( learn to code javascript at Free Code Camp logo ); export default class extends React.Component { constructor(props) { super(props); } static displayName = 'Nav' static propTypes = { signedIn: React.PropTypes.bool } renderBrand() { } renderSignin() { if (this.props.signedIn) { return ( Show Picture ); } else { return ( Sign In ); } } render() { return ( ); } }