Advertisement
shopnilSS

FIx Not necessary

Aug 13th, 2021
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React from 'react'
  2.  
  3. function Tag(props) {
  4.     const{value} = props
  5.     return (
  6.         <>
  7.             {
  8.                 value.length
  9.                 ?
  10.                 value.map( (dispTag, index) =>{
  11.                     return  (
  12.                     <div className="tag" key={index} >
  13.                         <h3>{dispTag }</h3>
  14.                         <button className='button' onClick={() => props.removeTag(index)}>x</button>
  15.                     </div>)
  16.                 })
  17.                     :
  18.                     null
  19.             }
  20.         </>
  21.     )
  22. }
  23.  
  24. export default Tag
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement