blob: a6a0375bb099218fa805fa1ccfbba80d4330387b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`<ResetRequest/> renders and matches snapshot 1`] = `
<form
className="sc-bdVaJa LHejR"
data-test="ResetRequest"
onSubmit={[Function]}
>
<DisplayError
error={Object {}}
/>
<fieldset
aria-busy={false}
disabled={false}
>
<label
htmlFor="email"
>
Email
<input
name="email"
onChange={[Function]}
placeholder="email"
type="text"
value=""
/>
</label>
<button
type="submit"
>
Request Reset!
</button>
</fieldset>
</form>
`;
|