mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-15 22:26:53 +03:00
60eed10573
* chore(deps): update all non-major dependencies * Consolidate msw * Fix eslintignore * Update * Update Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
34 lines
423 B
Plaintext
34 lines
423 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Slider renders correctly 1`] = `
|
|
<div
|
|
class="sc-gKXOVf gIVMWD"
|
|
>
|
|
<input
|
|
max="100"
|
|
min="0"
|
|
type="range"
|
|
value="0"
|
|
/>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Slider renders with props 1`] = `
|
|
<div
|
|
class="sc-gKXOVf jePJLi"
|
|
disabled=""
|
|
>
|
|
<label>
|
|
Hi
|
|
|
|
</label>
|
|
<input
|
|
disabled=""
|
|
max="10"
|
|
min="1"
|
|
type="range"
|
|
value="5"
|
|
/>
|
|
</div>
|
|
`;
|