import React from "react"; import "./button.css"; const Button = ({ name, onClick, bgColor }) => { return (
); }; export default Button;