mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-05-11 08:50:05 -07:00
Compare commits
4 Commits
85900fd0bd
...
47477bf81b
| Author | SHA1 | Date | |
|---|---|---|---|
| 47477bf81b | |||
| 559d03ecf3 | |||
| bea751612a | |||
| 58f626bb22 |
Vendored
+2
-1
@@ -136,7 +136,8 @@ class Component extends React.Component {
|
|||||||
|
|
||||||
// Invoked immediately after updating occurs. This method is not called for the initial render.
|
// Invoked immediately after updating occurs. This method is not called for the initial render.
|
||||||
// Use this as an opportunity to operate on the DOM when the component has been updated.
|
// Use this as an opportunity to operate on the DOM when the component has been updated.
|
||||||
// This is also a good place to do network requests as long as you compare the current props to previous props (e.g. a network request may not be necessary if the props have not changed).
|
// This is also a good place to do network requests as long as you compare the current props to
|
||||||
|
// previous props (e.g. a network request may not be necessary if the props have not changed).
|
||||||
componentDidUpdate(prevProps, prevState) { }
|
componentDidUpdate(prevProps, prevState) { }
|
||||||
|
|
||||||
// Invoked immediately before a component is unmounted and destroyed.
|
// Invoked immediately before a component is unmounted and destroyed.
|
||||||
|
|||||||
+2
-1
@@ -6,7 +6,8 @@
|
|||||||
|
|
||||||
#### General
|
#### General
|
||||||
|
|
||||||
- `Ctrl`+`Shift`+`P`, `F1`: Show Command Palette
|
- `Ctrl`+`Shift`+`P`, `F1`: Show Command Palette
|
||||||
|
- `Ctrl`+`Shift`+`T`: Open last closed tab
|
||||||
- `Ctrl`+`P`: Quick Open, Go to File
|
- `Ctrl`+`P`: Quick Open, Go to File
|
||||||
- `Ctrl`+`Shift`+`N`: New window/instance
|
- `Ctrl`+`Shift`+`N`: New window/instance
|
||||||
- `Ctrl`+`W`: Close window/instance
|
- `Ctrl`+`W`: Close window/instance
|
||||||
|
|||||||
Reference in New Issue
Block a user