added API keys

This commit is contained in:
sageTheDM 2024-10-04 08:20:21 +02:00
parent 918a3f2d7c
commit a157b43756
2 changed files with 22 additions and 2 deletions

View file

@ -9,9 +9,9 @@ interface ButtonSettingProps {
const ButtonSetting: React.FC<ButtonSettingProps> = ({ label, onClick, className }) => {
return (
<div className="settings-option">
<button
<button
onClick={onClick} // Call the onClick function when the button is clicked
className={className} // Apply any additional classes
className={className="export-button"} // Apply any additional classes
>
{label} {/* Display the label on the button */}
</button>