Thursday, 8 June 2023

Argument of type 'string' is not assignable to parameter of type 'never'.ts(2345) in react

 For example error scripts :

let formBody = [];

Change the script into :

  let formBody = [] as any;


No comments:

Post a Comment