import * as React from 'react'; export interface ILinkProps { title: string; href: string; className?: string; } export const Link: React.FunctionComponent = ({ children, title, href, className }: React.PropsWithChildren) => { return ( {children} ); };