valid-jsx-text-only.jsx 233 B

123456789101112
  1. a + 'b';
  2. <div className="alert alert-danger" role="alert">
  3. {t("No user details were found")}!
  4. </div>;
  5. <>
  6. <div>{import('abc')}</div>
  7. <div>{[].map(item => 'cat')}</div>
  8. <div>{'hello' + 'world'}</div>
  9. <DIV foo="FOO" />
  10. </>;