import React from 'react'; import { Badge, Link, Stack, Td, Tr } from '@chakra-ui/react'; import MasterActionsMenu from '../MasterActionsMenu'; import { getTimeSlot } from '../../lib/date-helpers'; export type MasterProps = { id: string; name: string; phone: string; }; const MasterItem = ({ name, phone, id }) => { return (