|
97 | 97 | |88 | [Are custom DOM attributes supported in React v16?](#are-custom-dom-attributes-supported-in-react-v16) | |
98 | 98 | |89 | [What is the difference between constructor and getInitialState?](#what-is-the-difference-between-constructor-and-getinitialstate) | |
99 | 99 | |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) | |
101 | 101 | |92 | [How to loop inside JSX?](#how-to-loop-inside-jsx) | |
102 | 102 | |93 | [How do you access props in attribute quotes?](#how-do-you-access-props-in-attribute-quotes) | |
103 | 103 | |94 | [What is React PropType array with shape?](#what-is-react-proptype-array-with-shape) | |
104 | 104 | |95 | [How conditionally apply class attributes?](#how-conditionally-apply-class-attributes) | |
105 | 105 | |96 | [What is the difference between React and ReactDOM?](#what-is-the-difference-between-react-and-reactdom) | |
106 | 106 | |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) | |
108 | 108 | |99 | [How to combine multiple inline style objects?](#how-to-combine-multiple-inline-style-objects) | |
109 | 109 | |100| [How to re-render the view when the browser is resized?](#how-to-re-render-the-view-when-the-browser-is-resized) |
110 | 110 | |101| [What is the difference between setState and replaceState methods?](#what-is-the-difference-between-setstate-and-replacestate-methods) | |
|
124 | 124 | |115| [How to update a component every second?](#how-to-update-a-component-every-second) | |
125 | 125 | |116| [How do you apply vendor prefixes to inline styles in React?](#how-do-you-apply-vendor-prefixes-to-inline-styles-in-react) | |
126 | 126 | |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) | |
128 | 128 | |119| [Why is a component constructor called only once?](#why-is-a-component-constructor-called-only-once) | |
129 | 129 | |120| [How to define constants in React?](#how-to-define-constants-in-react) | |
130 | 130 | |121| [How to programmatically trigger click event in React?](#how-to-programmatically-trigger-click-event-in-react) | |
|
143 | 143 | |133| [How do you programmatically navigate using React router v4?](#how-do-you-programmatically-navigate-using-react-router-v4) | |
144 | 144 | |134| [How to get query parameters in React Router v4](#how-to-get-query-parameters-in-react-router-v4) | |
145 | 145 | |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) | |
147 | 147 | |137| [How to implement default or NotFound page?](#how-to-implement-default-or-notfound-page) | |
148 | 148 | |138| [How to get history on React Router v4?](#how-to-get-history-on-react-router-v4) | |
149 | 149 | |139| [How to perform automatic redirect after login?](#how-to-perform-automatic-redirect-after-login) | |
|
224 | 224 | |208| [What is an action in Redux?](#what-is-an-action-in-redux) | |
225 | 225 | |209| [Does the statics object work with ES6 classes in React?](#does-the-statics-object-work-with-es6-classes-in-react) | |
226 | 226 | |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) | |
228 | 228 | |212| [How Redux Form initialValues get updated from state?](#how-redux-form-initialvalues-get-updated-from-state) | |
229 | 229 | |213| [How React PropTypes allow different type for one prop?](#how-react-proptypes-allow-different-types-for-one-prop) | |
230 | 230 | |214| [Can I import an SVG file as react component?](#can-i-import-an-svg-file-as-react-component) | |
231 | 231 | |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)| |
233 | 233 | |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)| |
235 | 235 | |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)| |
236 | 236 | |220| [What is the purpose of registerServiceWorker in React?](#what-is-the-purpose-of-registerserviceworker-in-react)| |
237 | 237 | |221| [What is React memo function?](#what-is-react-memo-function)| |
238 | 238 | |222| [What is React lazy function?](#what-is-react-lazy-function)| |
239 | 239 | |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)| |
241 | 241 | |225| [How to use class field declarations syntax in React classes?](#how-to-use-class-field-declarations-syntax-in-react-classes)| |
242 | 242 | |226| [What are hooks?](#what-are-hooks)| |
243 | 243 | |227| [What are the rules needs to follow for hooks?](#what-are-the-rules-needs-to-follow-for-hooks)| |
|
0 commit comments