mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
645 B
645 B
React Tips
Learn various tips and tricks for working with our React code.
Hot Reloading
If you followed this
rule
about exporting components, and are using the BrowserLoader, you can
hot reload any React component. Just turn on the pref
devtools.loader.hotreload
, re-open the devtools, and you should be
able to save any React component and instantly see changes.
This does not reset the state of your app, so you can quickly se changes in the same context.
Profiling
We need information here about how to use React.addons.Perf to profile the app.