import Fixture from '../../Fixture'; const React = window.React; class InputPlaceholderFixture extends React.Component { constructor(props, context) { super(props, context); this.state = { placeholder: 'A placeholder', changeCount: 0, }; } handleChange = () => { this.setState(({changeCount}) => { return { changeCount: changeCount + 1, }; }); }; handleGeneratePlaceholder = () => { this.setState({ placeholder: `A placeholder: ${Math.random() * 100}`, }); }; handleReset = () => { this.setState({ changeCount: 0, }); }; render() { const {placeholder, changeCount} = this.state; const color = changeCount === 0 ? 'green' : 'red'; return ( {' '}

onChange {' calls: '} {changeCount}

); } } export default InputPlaceholderFixture;