What happens if you edit modules with exports that aren’t React components in Fast Refresh?

Technology CommunityCategory: React NativeWhat happens if you edit modules with exports that aren’t React components in Fast Refresh?
VietMX Staff asked 3 years ago
  • Fast Refresh will re-run both that module, and the other modules importing it.
  • So if both Button.js and Modal.js import Theme.js, editing Theme.js will update both components.