import * as React from 'react'; import GoogleAddressInput from '..'; import clients from '../../clients'; function GoogleAddressInputWithMandatoryProps() { return ; } function GoogleAddressInputWithAllProps() { return ( {}} onBlur={e => {}} onFocus={e => {}} onKeyDown={e => {}} onSet={() => {}} Client={clients.GoogleMapsClient} magnifyingGlass readOnly autoSelect footer={'footer'} footerOptions={{}} clearSuggestionsOnBlur fallbackToManual poweredByGoogle handler="geocode" /> ); } function testInstanceMethods() { const instance = new GoogleAddressInput({}); instance.select(); instance.focus(); }