Solved -
Solved - Type 'x' is not assignable to type 'never' using TypeScript in React
This error occurs when you have not explicitly given a type to a value. Resulting in the implicit assignment of the type "never" to the value. The "never" type always expects the value to the empty and throws an error when its not empty.
Solved -
Solved - Type x is missing the following properties from type y using TypeScript in React
This error occurs when you are not passing all the required props or only passing some of the required props to the component. Pass all the props or define the typing of the component accordingly to handle this error.