fix: update any to void

This commit is contained in:
Kee Jefferys 2023-10-18 15:20:17 +11:00
parent b8ef827e62
commit 36adbaa71e
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ interface Props {
initialItem: string;
items: Array<{ value: string; label: string }>;
group: string;
onClick: (selectedValue: string) => any;
onClick: (selectedValue: string) => void;
style?: CSSProperties;
}