Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
formatting user component
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenClontz committed Jan 11, 2018
1 parent 32a1e96 commit 44b76e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/User.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ const User = ({ username, branch, changeBranch }: Props) => {
} else {
return (
<div className="container">
<h1>{username}</h1>
<h1>User: {username}</h1>

<h3>Branch</h3>
<p>{branch}</p>

<button onClick={() => changeBranch('audited')}>Reviewed</button>
<button onClick={() => changeBranch('user')}>User</button>
<button className="btn btn-default" onClick={() => changeBranch('audited')}>Reviewed</button>
<button className="btn btn-default" onClick={() => changeBranch('user')}>User</button>
</div>
)
}
Expand Down

0 comments on commit 44b76e9

Please sign in to comment.