// eslint-disable-next-line no-unused-vars import React from 'react'; import '../../css/dipper.css'; interface DipperProps { dipper: { title: string; image: string; link: string }[] } export function Dipper(props: DipperProps) { const { dipper } = props; const jumoDemo = (url: string) => { window.open(url, '_blank'); }; return (