Guest User

Untitled

a guest
Dec 11th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. {user.location ? (
  2. <p className="info-location">{user.location}</p>
  3. ) : (
  4. isCurrentUser && <AddInfo handleClick={toggleEdit} text="Add location" />
  5. )}
  6. {user.title ? (
  7. <p className="info-title">{getTitleString(user.title)}</p>
  8. ) : (
  9. isCurrentUser && (
  10. <AddInfo handleClick={toggleEdit} text="Are you a reader or writer?" />
  11. )
  12. )}
Add Comment
Please, Sign In to add comment