Untitled
Anonymous
plain_text
04/24/2023 9:52 AM
504 B
15
Indexable
import React from "react";
import "./Card.css";
import { Link } from "react-router-dom";
export default function Card(props) {
return (
<div className="container-card">
<Link to={"recipe/" + props.id}>
<img className="card-img" src={props.image} alt="mat" />
<p className="img-card-text">{props.text}</p>
</Link>
</div>
);
}
Editor is loading...