import * as React from "react"; import { FunctionComponent } from "react"; const Button: FunctionComponent<{ text: String; onClick: () => void; color: string; }> = ({ text, color, onClick }) => { return ( ); }; export default Button;