TS2558TS2558 — Expected Type Arguments
A generic type or function is used without providing required type arguments.
TS2820A JSX element type does not have any matching call or construct signatures.
The component used in JSX does not have a valid component signature. It may not return a valid React element, or its type is not recognized as a component.
Ensure the component is a valid function or class component. Check the return type is JSX.Element or ReactNode. Verify the component is properly exported and imported.
TS2558A generic type or function is used without providing required type arguments.
TS2698The spread operator (...) is used on a value that may not be an object type.
TS2564A class property is not initialized in the constructor and has no default value.
TS2578A @ts-expect-error directive is present but no error occurs on the next line.
TS7030A function with a return type does not return a value in all possible code paths.
TS2454A variable is used before it has been assigned a value.