mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-12 04:37:06 +03:00
89c8d7759e
* Upgrade * yarn.lock * Combine * Ignore * Update snapshots * All the cool kids are doing this
33 lines
418 B
Plaintext
33 lines
418 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Slider renders correctly 1`] = `
|
|
<div
|
|
class="sc-gKAaRy kGUJQC"
|
|
>
|
|
<input
|
|
max="100"
|
|
min="0"
|
|
type="range"
|
|
value="0"
|
|
/>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Slider renders with props 1`] = `
|
|
<div
|
|
class="sc-gKAaRy jCQInr"
|
|
disabled=""
|
|
>
|
|
<label>
|
|
Hi
|
|
</label>
|
|
<input
|
|
disabled=""
|
|
max="10"
|
|
min="1"
|
|
type="range"
|
|
value="5"
|
|
/>
|
|
</div>
|
|
`;
|