Guest User

Untitled

a guest
Jun 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <div className="content">
  2. {
  3. tabs.map(
  4. (tab, index) => <div key={index} className={index === active ? 'shown':'hidden'}>
  5. {tab.component}
  6. </div>
  7. );
  8. }
  9. </div>
Add Comment
Please, Sign In to add comment