var React = require('react'); var reactCreateClass = require('create-react-class'); var NavBar = reactCreateClass({ 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;