import React from "react"; import styles from "./index.less"; import { Anchor } from "antd"; const { Link } = Anchor; const handleClick = ( e: React.MouseEvent, link: { title: React.ReactNode, href: string, } ) => { e.preventDefault(); console.log(link); }; export default () => (
);