msaisrinivas / BlinkListApp

Detected usage of the any type JS-0323
Anti-pattern
Critical
a year agoa year old
Unexpected any. Specify a different type
 7  children: ReactNode;
 8  disabled:boolean,
 9  onClick: ()=>void,
10  icon?: any,11}
12
13function IconButtons(props:props) {
Unexpected any. Specify a different type
 97
 98interface props {
 99  name: string;
100  onClick: any;101  classing: string;
102  icon: React.ReactNode | undefined;
103  end: React.ReactNode | undefined;