import useFetchMock from './../hooks/use-fetch-mock' import Input from '../../js/features/settings/components/emails/add-email/input' export const EmailInput = (args: any) => { useFetchMock(fetchMock => fetchMock.get(/\/institutions\/domains/, [ { hostname: 'autocomplete.edu', university: { id: 123, name: 'Auto Complete University' }, }, ]) ) return ( <>
Use autocomplete.edu as domain to trigger an autocomplete
) } export default { title: 'Account Settings / Emails and Affiliations', component: Input, argTypes: { onChange: { action: 'change' }, }, }