import React from "react"; import { Grow } from '@mui/material'; import { Col } from 'react-bootstrap' import { PuestoCard } from './Card'; export function GridMode(props) { let { setPuesto, setEdit, setDelete, setShow, data, index, showing } = props; const op = { set: setPuesto, edit: setEdit, suprime: setDelete, show: setShow, } return ( { data.length && showing === 'grid' ? data[index].map(plaza => { return (
) }) :
}
) }