fix: hydration error and draft issue workflow (#2199)

* fix: hydration error and draft issue workflow

* fix: build error
This commit is contained in:
Dakshesh Jain
2023-09-19 12:56:32 +05:30
committed by GitHub
parent 5d331477ef
commit 79bf7d4c0c
11 changed files with 240 additions and 47 deletions

View File

@@ -1,7 +1,7 @@
export type ButtonProps = {
children: React.ReactNode;
className?: string;
onClick?: () => void;
onClick?: (e: any) => void;
type?: "button" | "submit" | "reset";
disabled?: boolean;
loading?: boolean;