1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +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 () {
return (
<div style={{ textAlign: 'right' }}>
<p>
You are logged in as:
<strong> <a href="#edit-user" onClick={this.openEdit}>{this.props.user.userName || 'unknown'}</a></strong>
</p>
</div>
<a className="mdl-navigation__link" href="#edit-user" onClick={this.openEdit} style={{}}>
Username:&nbsp;
<strong>{this.props.user.userName || 'Unknown'}</strong>
</a>
);
}
}