import * as React from "react"; import { IButton } from "./interfaces/i-button"; const Button = ({ onClick, qaTarget, text, typeStr }: IButton) => { return ( ); }; Button.defaultProps = { qaTarget: "", onClick: () => {} }; export { Button };