11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
|
import React from 'react';
|
||
|
import { Link as Comp, LinkProps } from 'react-router-dom';
|
||
|
|
||
|
const Link = (props: LinkProps) => (
|
||
|
<Comp
|
||
|
{...props}
|
||
|
className='text-primary-600 dark:text-accent-blue hover:underline'
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default Link;
|