import React from "react"; import classNames from "classnames"; export interface ButtonProps { className?: string; label?: string; handleOnClick: () => void; } export const Button: React.SFC = (props: ButtonProps) => { const label: string = props.label || "Submit", classes: string = classNames(props.className, "rlf-button"); return (
); };