Bring over email address management
This commit is contained in:
parent
fa1ce61a06
commit
aa7afe819f
11 changed files with 342 additions and 11 deletions
|
@ -38,6 +38,13 @@ export default class Field extends React.PureComponent {
|
|||
return this.refs.fieldInput.value;
|
||||
}
|
||||
|
||||
set value(newValue) {
|
||||
if (!this.refs.fieldInput) {
|
||||
throw new Error("No field input reference");
|
||||
}
|
||||
this.refs.fieldInput.value = newValue;
|
||||
}
|
||||
|
||||
render() {
|
||||
const extraProps = Object.assign({}, this.props);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue