import FixtureSet from '../../FixtureSet'; import TestCase from '../../TestCase'; import ControlledFormFixture from './ControlledFormFixture'; const React = window.React; export default class FormStateCases extends React.Component { render() { return (
  • Set up autofill/autocomplete for your browser.
    Instructions:
  • Click into any input.
  • Select any autofill option.
  • Autofill options should appear when clicking into fields. Selected autofill options should change state (shown underneath, under "States").
    ); } } const SafeLink = ({text, href}) => { return ( {text} ); };