import type { MouseEvent } from 'react'; import React, { forwardRef, startTransition } from 'react'; import { useNavigate } from 'dumi'; export type LinkProps = { to?: string; children?: React.ReactNode; className?: string; }; const Link = forwardRef((props, ref) => { const { to, children, ...rest } = props; const navigate = useNavigate(); const handleClick = (e: MouseEvent) => { if (!to.startsWith('http')) { e.preventDefault(); startTransition(() => { navigate(to); }); } }; return ( {children} ); }); export default Link;