redux-devtools/packages/redux-devtools-ui/test/__snapshots__/Slider.test.tsx.snap
renovate[bot] 94928262b1
chore(deps): update all non-major dependencies (#1213)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-09 23:36:16 +00:00

34 lines
423 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Slider renders correctly 1`] = `
<div
class="sc-gKPRtg kGQvQq"
>
<input
max="100"
min="0"
type="range"
value="0"
/>
</div>
`;
exports[`Slider renders with props 1`] = `
<div
class="sc-gKPRtg ffwohD"
disabled=""
>
<label>
Hi
</label>
<input
disabled=""
max="10"
min="1"
type="range"
value="5"
/>
</div>
`;