import React, { FC, ReactType, useState } from 'react'; import { ImageProps } from '../../blocks/Image'; import Link, { LinkProps } from '../../blocks/Link'; import css from './index.module.css'; import Button from '../../blocks/Button'; import classNames from 'classnames'; export interface PartnerListProps { title?: string; items?: { id: string; title: string; LinkProps: LinkProps; Image: ReactType; ImageProps: ImageProps; }[]; } const PartnerList: FC = ({ items }) => { const [showAll, setShowAll] = useState(false); return ( <>
); }; export default PartnerList;