(props)
| 96 | } |
| 97 | |
| 98 | const Card = (props) => { |
| 99 | |
| 100 | const {id, name, description, tags, demo, github} = props.data; |
| 101 | |
| 102 | return ( |
| 103 | <Box key={id} variants={Item}> |
| 104 | <Title>{name}</Title> |
| 105 | <Description> |
| 106 | {description} |
| 107 | </Description> |
| 108 | <Tags> |
| 109 | { |
| 110 | tags.map((t,id) => { |
| 111 | return <Tag key={id}>#{t}</Tag> |
| 112 | }) |
| 113 | } |
| 114 | </Tags> |
| 115 | <Footer> |
| 116 | <Link href={demo} target="_blank"> |
| 117 | Visit |
| 118 | </Link> |
| 119 | <Git href={github} target="_blank"> |
| 120 | <Github width={30} height={30} /> |
| 121 | </Git> |
| 122 | </Footer> |
| 123 | </Box> |
| 124 | ) |
| 125 | } |
| 126 | |
| 127 | export default Card |
nothing calls this directly
no outgoing calls
no test coverage detected