Error messages

ERROR: Single Root

A components in Qwik must have a single JSX root element. Your component has multiple roots on lines: [XXX, XXX]. Rewrite your component with a single root such as (return <>{...}</>.)

Multiple JSX root are not allowed inside the same component, instead use a single Fragment node (<>{}</>) and place all the template inside

WARNING: props deconstruction

component$(({class, thing, stuff}) => {

});

Deconstructing function parameters, leads to over-rendering by performing eager reads of store/signals. Consider not deconstructing paramaters, this allows Qwik to better optimize rendering updates.

https://wix-ux.com/when-life-gives-you-lemons-write-better-error-messages-46c5223e1a2f