import { Card, CardContent, CardHeader, Grid, Typography } from "@noahspan/noahspan-components" import { PilotCardProps } from "./PilotCardProps.interface" import ActionMenu from "../actionMenu/ActionMenu" const PilotCard = ({ pilots, onDelete, onOpenCloseForm }: PilotCardProps) => { return ( {pilots.map((pilot) => { return ( } title={pilot.name} slotProps={{ title: { fontSize: '24px', } }} /> ) })} ) } export default PilotCard;