A legacy React addon providing LinkedStateMixin for two-way binding in React forms, allowing components to easily sync state with input values. Current stable version is 15.6.2, but it is no longer maintained and deprecated in favor of explicit value/onChange patterns. For React 16+, separate react-linked-input package is required. It uses mixins, which are incompatible with ES6 classes and modern React. Alternatives include controlled components with useState.
npm install react-addons-linked-state-mixinNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates using LinkedStateMixin with createReactClass to create a two-way bound input via valueLink.
Use controlled components with useState and onChange handlers instead.
Install react-linked-input and use LinkedInput component with valueLink.
Use create-react-class package or migrate to functional components with hooks.
Ensure component has mixins: [LinkedStateMixin] and use this.linkState('stateKey') to create the valueLink object.Add mixins: [LinkedStateMixin] to the component definition.
Correct usage: mixins: [LinkedStateMixin] (an array), not mixins: LinkedStateMixin.
Install create-react-class and use var createReactClass = require('create-react-class');