1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00
This commit is contained in:
sveisvei 2016-12-04 13:25:20 +01:00
parent 44fdc3c315
commit d7bcdd6c1b

View File

@ -15,12 +15,10 @@ export default class ShowUserComponent extends React.Component {
render () { render () {
return ( return (
<div style={{ textAlign: 'right' }}> <a className="mdl-navigation__link" href="#edit-user" onClick={this.openEdit} style={{}}>
<p> Username:&nbsp;
You are logged in as: <strong>{this.props.user.userName || 'Unknown'}</strong>
<strong> <a href="#edit-user" onClick={this.openEdit}>{this.props.user.userName || 'unknown'}</a></strong> </a>
</p>
</div>
); );
} }
} }