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 (