import * as React from 'react'; import { Card, CardActions, CardContent, Button, Typography, CardMedia, CardActionArea, } from '@mui/material' import QA from '../../Images/puesto.jpg' export function TestCard(props) { let { test } = props; console.log("TEST :: ", test) return ( {test.nombre} {test.descripcion} ) }