import * as React from 'react'; export interface ILinkButtonProps { title: string; onClick: () => void; } export const LinkButton: React.FunctionComponent = ({ children, title, onClick }: React.PropsWithChildren) => { return ( ); };