import React, { FC } from 'react'; import css from './index.module.css'; import Content from '../Content'; import { Link, MilaGridColumn, MilaGridVoid } from '../..'; export interface AllServicesListProps { offerings: unknown; } const AllServicesList: FC = ({ offerings }) => ( {
    {Object.keys(offerings).map((key, y) => (
  • {key}

      {offerings[key].map(item => (
    • {item.title}
    • ))}
  • ))}
}
); export default AllServicesList;