attr-comments.js 376 B

1234567891011121314151617181920212223242526272829303132
  1. <Component
  2. propFn={
  3. // comment
  4. function(arg) {
  5. fn(arg);
  6. }
  7. }
  8. propArrowFn={
  9. // comment
  10. arg => fn(arg)
  11. }
  12. propArrowWithBreak={
  13. // comment
  14. arg =>
  15. fn({
  16. makeItBreak
  17. })
  18. }
  19. propArray={
  20. // comment
  21. [el1, el2]
  22. }
  23. propObj={
  24. // comment
  25. { key: val }
  26. }
  27. propTemplate={
  28. // comment
  29. `text`
  30. }
  31. />;