Q-Manager/src/components/Button.jsx
2024-11-30 10:46:39 +02:00

19 lines
344 B
JavaScript

import React from "react";
import "./button.css";
const Button = ({ name, onClick, bgColor }) => {
return (
<div className="button-container">
<button
style={{ backgroundColor: bgColor }}
className="button"
onClick={onClick}
>
{name}
</button>
</div>
);
};
export default Button;