MCPcopy Create free account
hub / github.com/codebucks27/react-portfolio-final / Card

Function Card

src/subComponents/Card.jsx:98–125  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

96}
97
98const 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
127export default Card

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected