13 lines
203 B
TypeScript
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>
|
||
|
);
|