fido-node.github.io/components/personal-card/elements/Link.tsx
2021-04-28 22:31:42 +03:00

13 lines
203 B
TypeScript

import * as React from 'react';
type Props = {
href: string;
children: string;
};
export default ({ href, children }: Props) => (
<a className={'underline'} href={href}>
{children}
</a>
);