mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
c807bedb65
Refactor add email section GitOrigin-RevId: 41de440caaf3baf43673c4a5f07a18b990f28c7b
30 lines
704 B
TypeScript
30 lines
704 B
TypeScript
import useFetchMock from './../hooks/use-fetch-mock'
|
|
import Input from '../../js/features/settings/components/emails/add-email/input'
|
|
|
|
export const EmailInput = args => {
|
|
useFetchMock(fetchMock =>
|
|
fetchMock.get(/\/institutions\/domains/, [
|
|
{
|
|
hostname: 'autocomplete.edu',
|
|
university: { id: 123, name: 'Auto Complete University' },
|
|
},
|
|
])
|
|
)
|
|
return (
|
|
<>
|
|
<Input {...args} />
|
|
<br />
|
|
<div>
|
|
Use <code>autocomplete.edu</code> as domain to trigger an autocomplete
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default {
|
|
title: 'Account Settings / Emails and Affiliations',
|
|
component: Input,
|
|
argTypes: {
|
|
onChange: { action: 'change' },
|
|
},
|
|
}
|