Skip to content

Commit e36e1af

Browse files
committed
show stuff in header
1 parent 088705b commit e36e1af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/client/src/components/Header.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ class Header extends Component {
55
renderContent() {
66
switch (this.props.auth) {
77
case null:
8-
return 'Still deciding';
8+
return;
99
case false:
10-
return 'im loggedout';
10+
return <li><a href="/auth/google">Login With Google</a></li>;
1111
default:
12-
return 'im logged in';
12+
return <li><a>Logout</a></li>;
1313
}
1414
}
1515

0 commit comments

Comments
 (0)