summaryrefslogtreecommitdiffstats
path: root/devtools/docs/react-tips.md
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /devtools/docs/react-tips.md
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/docs/react-tips.md')
-rw-r--r--devtools/docs/react-tips.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/devtools/docs/react-tips.md b/devtools/docs/react-tips.md
new file mode 100644
index 000000000..05711859c
--- /dev/null
+++ b/devtools/docs/react-tips.md
@@ -0,0 +1,19 @@
+# React Tips
+
+Learn various tips and tricks for working with our React code.
+
+## Hot Reloading
+
+If you followed [this
+rule](react-guidelines.md#export-the-component-directly-and-create-factory-on-import)
+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. \ No newline at end of file