Currently, children of JSX nodes are specified through the children attribute of a self-closing tag.
<h3
className={q.a.secondaryHeaderText}
children={["I agree to the following:"]}
/>
Properly placing children within the node between two tags would improve readability and be more in line with typical source code. For example:
<h3 className={q.a.secondaryHeaderText}>
I agree to the following:
</h3>