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
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { forwardRef } from 'react';
|
---|
| 2 | import Link, { LinkProps } from 'next/link';
|
---|
| 3 |
|
---|
| 4 | // ----------------------------------------------------------------------
|
---|
| 5 |
|
---|
| 6 | const RouterLink = forwardRef<HTMLAnchorElement, LinkProps>(({ ...other }, ref) => (
|
---|
| 7 | <Link ref={ref} {...other} />
|
---|
| 8 | ));
|
---|
| 9 |
|
---|
| 10 | export default RouterLink;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.