53 lines
797 B
Plaintext
53 lines
797 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Register Snapshot 1`] = `
|
|
<div
|
|
className="register-wrapper"
|
|
>
|
|
<h1>
|
|
Enter your data to register.
|
|
</h1>
|
|
<form
|
|
onSubmit={[Function]}
|
|
>
|
|
<label>
|
|
<p>
|
|
Username
|
|
</p>
|
|
<input
|
|
id="username"
|
|
onChange={[Function]}
|
|
type="text"
|
|
/>
|
|
</label>
|
|
<label>
|
|
<p>
|
|
Name
|
|
</p>
|
|
<input
|
|
id="displayName"
|
|
onChange={[Function]}
|
|
type="text"
|
|
/>
|
|
</label>
|
|
<label>
|
|
<p>
|
|
Password
|
|
</p>
|
|
<input
|
|
id="password"
|
|
onChange={[Function]}
|
|
type="password"
|
|
/>
|
|
</label>
|
|
<div>
|
|
<button
|
|
type="submit"
|
|
>
|
|
Sign me up
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
`;
|