Property 'cssClass' does not exist on type 'DetailedHTMLProps, HTMLSpanElement>' tsc/config
Property 'cssClass' does not exist on type 'DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>' tsc/config
Offending code
<span cssClass="side">Text</span>
Solution
<span className="side">Text</span>
Recent Comments