feat: raids

This commit is contained in:
2023-12-07 16:41:29 +00:00
parent 4336513184
commit 43bf7f2d00
11 changed files with 194 additions and 20 deletions

View File

@ -5,7 +5,7 @@ import classNames from "classnames";
interface AsyncButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
disabled?: boolean;
onClick(e: React.MouseEvent): Promise<void> | void;
onClick?: (e: React.MouseEvent) => Promise<void> | void;
children?: React.ReactNode;
}