You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***[KendoReact](https://www.telerik.com/kendo-react-ui/)**: UI for React Developers.
83
83
***[Mobiscroll React UI Components](https://mobiscroll.com/react)** Mobile UI Controls for the Productive React Developer.
84
84
***[React UI Toolkit](https://react-ui-tools.com/)**: 115+ professionally maintainted UI components ranging from a robust grid to charts and more. Try for FREE and build React apps faster.
85
+
***[Flatlogic React Admin Templates](https://flatlogic.com/templates/react)** 5+ Paid and Free React Admin templates with a lot of components to speed up web development. No jQuery.
Copy file name to clipboardExpand all lines: content/docs/uncontrolled-components.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ title: Uncontrolled Components
4
4
permalink: docs/uncontrolled-components.html
5
5
---
6
6
7
-
In most cases, we recommend using [controlled components](/docs/forms.html) to implement forms. In a controlled component, form data is handled by a React component. The alternative is uncontrolled components, where form data is handled by the DOM itself.
7
+
In most cases, we recommend using [controlled components](/docs/forms.html#controlled-components) to implement forms. In a controlled component, form data is handled by a React component. The alternative is uncontrolled components, where form data is handled by the DOM itself.
8
8
9
9
To write an uncontrolled component, instead of writing an event handler for every state update, you can [use a ref](/docs/refs-and-the-dom.html) to get form values from the DOM.
Copy file name to clipboardExpand all lines: gatsby-config.js
+3-1
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,9 @@ module.exports = {
163
163
resolve: `gatsby-plugin-manifest`,
164
164
options: {
165
165
name: 'React Docs',
166
-
short_name: 'React',
166
+
short_name: 'React',// eg. React [%LANG_CODE%]
167
+
// Translators: please change this and two above options (see https://www.gatsbyjs.org/packages/gatsby-plugin-manifest/#feature-configuration---optional)
0 commit comments