MCPcopy Create free account
hub / github.com/CodeWithHarry/Sigma-Web-Dev-Course / Card

Function Card

Video 106/first-app/src/components/Card.jsx:4–13  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import "./Card.css"
3
4const Card = (props) => {
5 return (
6 <div className='card' style={{overflow: "hidden" }}>
7 <img src="https://cdn.shopify.com/s/files/1/0306/6419/6141/articles/coding_languages.png?v=1619126283" alt="" width={333} style={{border: "2px solid black"}} />
8 <h1>{props.title}</h1>
9 <p>{props.description}</p>
10
11 </div>
12 )
13}
14
15export default Card

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected