soapbox/src/components/link.tsx

11 wiersze
248 B
TypeScript

2022-09-30 14:22:55 +00:00
import React from 'react';
import { Link as Comp, LinkProps } from 'react-router-dom';
const Link = (props: LinkProps) => (
<Comp
{...props}
2023-02-01 22:13:42 +00:00
className='text-primary-600 hover:underline dark:text-accent-blue'
2022-09-30 14:22:55 +00:00
/>
);
export default Link;