Skip to content

Commit 00f7109

Browse files
committed
Connect missing links
1 parent 7cc7458 commit 00f7109

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@
9797
|88 | [Are custom DOM attributes supported in React v16?](#are-custom-dom-attributes-supported-in-react-v16) |
9898
|89 | [What is the difference between constructor and getInitialState?](#what-is-the-difference-between-constructor-and-getinitialstate) |
9999
|90 | [Can you force a component to re-render without calling setState?](#can-you-force-a-component-to-re-render-without-calling-setstate) |
100-
|91 | [What is the difference between super() and super(props) in React using ES6 classes?](#what-is-the-difference-between-super-and-super-props-in-react-using-es6-classes) |
100+
|91 | [What is the difference between super() and super(props) in React using ES6 classes?](#what-is-the-difference-between-super-and-superprops-in-react-using-es6-classes) |
101101
|92 | [How to loop inside JSX?](#how-to-loop-inside-jsx) |
102102
|93 | [How do you access props in attribute quotes?](#how-do-you-access-props-in-attribute-quotes) |
103103
|94 | [What is React PropType array with shape?](#what-is-react-proptype-array-with-shape) |
104104
|95 | [How conditionally apply class attributes?](#how-conditionally-apply-class-attributes) |
105105
|96 | [What is the difference between React and ReactDOM?](#what-is-the-difference-between-react-and-reactdom) |
106106
|97 | [Why ReactDOM is separated from React?](#why-reactdom-is-separated-from-react) |
107-
|98 | [How to use React label element?](#how-to-use-react-label-element?) |
107+
|98 | [How to use React label element?](#how-to-use-react-label-element) |
108108
|99 | [How to combine multiple inline style objects?](#how-to-combine-multiple-inline-style-objects) |
109109
|100| [How to re-render the view when the browser is resized?](#how-to-re-render-the-view-when-the-browser-is-resized)
110110
|101| [What is the difference between setState and replaceState methods?](#what-is-the-difference-between-setstate-and-replacestate-methods) |
@@ -124,7 +124,7 @@
124124
|115| [How to update a component every second?](#how-to-update-a-component-every-second) |
125125
|116| [How do you apply vendor prefixes to inline styles in React?](#how-do-you-apply-vendor-prefixes-to-inline-styles-in-react) |
126126
|117| [How to import and export components using react and ES6?](#how-to-import-and-export-components-using-react-and-es6) |
127-
|118| [Why component names must begin with a capital letter?](#why-component-names-must-begin-with-a-capital-letter) |
127+
|118| [Why React component names must begin with a capital letter?](#why-react-component-names-must-begin-with-a-capital-letter) |
128128
|119| [Why is a component constructor called only once?](#why-is-a-component-constructor-called-only-once) |
129129
|120| [How to define constants in React?](#how-to-define-constants-in-react) |
130130
|121| [How to programmatically trigger click event in React?](#how-to-programmatically-trigger-click-event-in-react) |
@@ -143,7 +143,7 @@
143143
|133| [How do you programmatically navigate using React router v4?](#how-do-you-programmatically-navigate-using-react-router-v4) |
144144
|134| [How to get query parameters in React Router v4](#how-to-get-query-parameters-in-react-router-v4) |
145145
|135| [Why you get "Router may have only one child element" warning?](#why-you-get-router-may-have-only-one-child-element-warning) |
146-
|136| [How to pass params to history.push method in React Router v4?](#how-to-pass-params-to-history-push-method-in-react-router-v4) |
146+
|136| [How to pass params to history.push method in React Router v4?](#how-to-pass-params-to-historypush-method-in-react-router-v4) |
147147
|137| [How to implement default or NotFound page?](#how-to-implement-default-or-notfound-page) |
148148
|138| [How to get history on React Router v4?](#how-to-get-history-on-react-router-v4) |
149149
|139| [How to perform automatic redirect after login?](#how-to-perform-automatic-redirect-after-login) |
@@ -224,20 +224,20 @@
224224
|208| [What is an action in Redux?](#what-is-an-action-in-redux) |
225225
|209| [Does the statics object work with ES6 classes in React?](#does-the-statics-object-work-with-es6-classes-in-react) |
226226
|210| [Can Redux only be used with React?](#can-redux-only-be-used-with-react) |
227-
|211| [Do you need to have a particular build tool to use Redux?](do-you-need-to-have-a-particular-build-tool-to-use-redux) |
227+
|211| [Do you need to have a particular build tool to use Redux?](#do-you-need-to-have-a-particular-build-tool-to-use-redux) |
228228
|212| [How Redux Form initialValues get updated from state?](#how-redux-form-initialvalues-get-updated-from-state) |
229229
|213| [How React PropTypes allow different type for one prop?](#how-react-proptypes-allow-different-types-for-one-prop) |
230230
|214| [Can I import an SVG file as react component?](#can-i-import-an-svg-file-as-react-component) |
231231
|215| [Why are inline ref callbacks or functions not recommended?](#why-are-inline-ref-callbacks-or-functions-not-recommended)|
232-
|216| [What is render hijacking in reactjs?](#what-is-render-hijacking-in-reactjs)|
232+
|216| [What is render hijacking in React?](#what-is-render-hijacking-in-react)|
233233
|217| [What are HOC factory implementations?](#what-are-hoc-factory-implementations)|
234-
|218| [How to pass numbers to React component?](#how-to-pass-numbers-to-react-component?)|
234+
|218| [How to pass numbers to React component?](#how-to-pass-numbers-to-react-component)|
235235
|219| [Do I need to keep all my state into Redux? Should I ever use react internal state?](#do-i-need-to-keep-all-my-state-into-redux-should-i-ever-use-react-internal-state)|
236236
|220| [What is the purpose of registerServiceWorker in React?](#what-is-the-purpose-of-registerserviceworker-in-react)|
237237
|221| [What is React memo function?](#what-is-react-memo-function)|
238238
|222| [What is React lazy function?](#what-is-react-lazy-function)|
239239
|223| [How to prevent unnecessary updates using setState?](#how-to-prevent-unnecessary-updates-using-setstate)|
240-
|224| [How do you render Array, Strings and Numbers in React 16 Version?](#how-do-you-render-array,-strings-and-numbers-in-react-16-version)|
240+
|224| [How do you render Array, Strings and Numbers in React 16 Version?](#how-do-you-render-array-strings-and-numbers-in-react-16-version)|
241241
|225| [How to use class field declarations syntax in React classes?](#how-to-use-class-field-declarations-syntax-in-react-classes)|
242242
|226| [What are hooks?](#what-are-hooks)|
243243
|227| [What are the rules needs to follow for hooks?](#what-are-the-rules-needs-to-follow-for-hooks)|

0 commit comments

Comments
 (0)