var React = require('react'); var NavBar = React.createClass({ render: function() { var that = this; var signedInAs = function() { if (that.props.loggedIn === true) { return (

Signed in as {that.props.user.full_name}

); } }; var dashboard = function() { if (that.props.loggedIn === true) { return (
  • Dashboard
  • ); } }; var customRules = function() { if (that.props.loggedIn === true) { return (
  • Custom Rules
  • ); } }; return ( ); } }); module.exports = NavBar;