source: src/routes/components/router-link.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 306 bytes
Line 
1import { forwardRef } from 'react';
2import Link, { LinkProps } from 'next/link';
3
4// ----------------------------------------------------------------------
5
6const RouterLink = forwardRef<HTMLAnchorElement, LinkProps>(({ ...other }, ref) => (
7 <Link ref={ref} {...other} />
8));
9
10export default RouterLink;
Note: See TracBrowser for help on using the repository browser.