import * as React from 'react'; import { Link, LinkProps } from "react-router-dom"; export interface ButtonProps extends LinkProps { disabled?: boolean inverted?: string // Apparently "inverted" in DOM cannot be `boolean` but must be `inverted` } export function Button(props: ButtonProps) { if (props.disabled) { return {props.children} } else { return {props.children} } }