(props)
| 2 | import "./Card.css" |
| 3 | |
| 4 | const 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 | |
| 15 | export default Card |
nothing calls this directly
no outgoing calls
no test coverage detected