import type { MouseEvent } from 'react' import React from 'react' import { Link } from 'react-router-dom' import { OutsideClick } from 'features/OutsideClick' import { CardHoverInner, CardHoverTitle, CardHoverWrapper, MoreVideo, Row, Rows, } from '../styled' type CardFinishedHoverProps = { id: number, onClose: () => void, sportName: string, } const stopProp = (e: MouseEvent) => { e.stopPropagation() } export const CardFinishedHover = ({ id, onClose, sportName, }: CardFinishedHoverProps) => ( )