import React from 'react'; import { Machine } from '../../models/machine'; interface MachineCardProps { machine: Machine } /** * This component is a box showing the picture of the given machine and two buttons: one to start the reservation process * and another to redirect the user to the machine description page. */ const MachineCard: React.FC = ({ machine }) => { return (
) }