Closed brandongregoryscott closed 2 years ago
2 bugs I recently found during use on another project:
JsxSelfClosingElements are not handled at all, which means this won't be sorted:
JsxSelfClosingElement
<EmptyState title="No Instruments Found" description="Save a new instrument to begin" iconBgColor={theme.colors.gray100} />
Additionally, it would be nice to handle JsxElements that appear as children of JsxExpressions:
JsxExpression
<Button marginY={8} marginRight={12} iconAfter={<CogIcon size={24} color="gray" />}> Settings </Button>
2 bugs I recently found during use on another project:
JsxSelfClosingElement
s are not handled at all, which means this won't be sorted:Additionally, it would be nice to handle JsxElements that appear as children of
JsxExpression
s: