removed all occurences of "any"

This commit is contained in:
phntxx 2021-03-23 16:26:14 +01:00
parent 3f3722ee2b
commit 091280d4ad
7 changed files with 13 additions and 16 deletions

View file

@ -70,7 +70,7 @@ const StyledButton = styled.button`
interface IIconButtonProps {
icon: string;
onClick: any;
onClick: (e: React.FormEvent) => void;
}
/**