import React, { FC } from 'react' import { GiphyGif } from '../../../types' interface Props { gif: GiphyGif selected: boolean onSelect: (id: string) => void } const Gif: FC = ({ gif, selected, onSelect }) => { return (
onSelect(gif.id)}> {gif.title}
) } export default Gif