import { FC } from 'react'; import dynamic from 'next/dynamic'; import { SearchType } from 'lib/API/types'; import cn from 'classnames'; const Link = dynamic(() => import('components/PathLink')); const SearchCard: FC = ({ id, title, desc, url }) => { return ( <>
{/* Title */}

{title}

{/* Description */}

{desc}

); }; export default SearchCard;