Last Updated: June 09, 2023
·
2.708K
· naohiro

Integrate with Turbolinks and webpacker react

Without turbolinks, your pack will look like following

document.addEventListener('DOMContentLoaded', () => {
  ReactDOM.render(
    <Component />,
    document.getElementById('react-component'),
  )
})

However, this won't work well with turbolinks. You need to update event listener like following

document.addEventListener('turbolinks:load', function() {
  ReactDOM.render(
    <Component />,
    document.getElementById('react-component'),
  )
})

Reference: https://github.com/rails/webpacker/issues/161

1 Response
Add your response

Thank you

over 1 year ago ·

Have a fresh tip? Share with Coderwall community!

Post
Post a tip