Files
ncd-fe/packages/pl-fe/src/components/link.tsx
2026-01-06 04:25:04 +01:00

12 lines
267 B
TypeScript

import { Link as Comp, type LinkProps } from '@tanstack/react-router';
import React from 'react';
const Link = (props: LinkProps) => (
<Comp
{...props}
className='text-primary-600 hover:underline dark:text-primary-400'
/>
);
export { Link as default };