NestedLink icon indicating copy to clipboard operation
NestedLink copied to clipboard

Is there a way to handle `undefined` values?

Open AdamBCo opened this issue 7 years ago • 0 comments

For example:

class Edit extends LinkedComponent {
   state = {}
   render() {
   return (<div><Input valueLink={ this.linkAt('name')}</div>)
}

I would like to set the state when the name value is changed by the user

AdamBCo avatar Aug 21 '18 15:08 AdamBCo