boundary.js 335 B

12345678910111213141516171819202122232425
  1. `${
  2. a + // a
  3. a
  4. }
  5. ${a // comment
  6. }
  7. ${b /* comment */}
  8. ${/* comment */ c /* comment */}
  9. ${// comment
  10. d //comment
  11. }
  12. ${// $FlowFixMe found when converting React.createClass to ES6
  13. ExampleStory.getFragment('story')}
  14. `;
  15. <div>
  16. {ExampleStory.getFragment('story') // $FlowFixMe found when converting React.createClass to ES6
  17. }
  18. </div>;