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
Below is a minimal example using [state hooks](https://reactjs.org/docs/hooks-state.html). Note that `CheckboxTree` is a [controlled](https://facebook.github.io/react/docs/forms.html#controlled-components) component, so you must update its `checked` and `expanded` properties whenever a change occurs.
45
+
Below is a minimal example using [state hooks][docs-state-hooks]. Note that `CheckboxTree` is a [controlled][docs-controlled] component, so you must update its `checked` and `expanded` properties whenever a change occurs.
46
46
47
47
```jsx
48
48
importReact, { useState } from'react';
@@ -106,7 +106,7 @@ To change the rendered icons entirely, simply pass in the `icons` property and o
106
106
/>
107
107
```
108
108
109
-
If you are using the [`react-fontawesome`](https://github.com/FortAwesome/react-fontawesome) library, you can also directly substitute those icons:
109
+
If you are using the [`react-fontawesome`][react-fontawesome] library, you can also directly substitute those icons:
0 commit comments