//jshint esnext:true var React = require('react'); class Navbar extends React.Component { render() { var signedInAs = () => { if (this.props.loggedIn === true) { return (
Signed in as {this.props.user.full_name}