Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. class MyComponent extends Component {
  2.  
  3. const jsScript = `
  4. // ES6 code like arrow functions, spread operator, destructuring etc
  5. // It mainly uses jQuery to get the elements and work on them
  6. `
  7.  
  8. render() {
  9. return (
  10. <div>
  11. lots of content which will need progressive enhancement
  12. <script dangerouslySetInnerHTML={{ __html: jsScript }} />
  13. </div>
  14. )
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement