import React from "react"; import { Service } from "../../types"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; interface ServiceListProps { services: Service[]; } export default function ServiceList({ services }: ServiceListProps) { const serviceItems = services.map((service) => { return ( {service.name} ); }); return {serviceItems}; }