Guest User

Untitled

a guest
Aug 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. return (
  2. <div className="toolbar">
  3. {this.props.buttons.map(function (item, i) {
  4. return <Link key={i}
  5. className={item.className}
  6. to={item.link}>{item.text}</Link>;
  7. })}
  8. </div>
Add Comment
Please, Sign In to add comment