redux-devtools/packages/devui/tests/__snapshots__/Slider.test.tsx.snap
Nathan Bierema 727d753081
feature(devui): convert to TypeScript (#629)
* stash

* and those

* stash

* stash

* stash

* stash

* tests

* fix errors

* revert

* stash

* fix lint

* prettier
2020-09-09 10:35:22 -04:00

33 lines
416 B
Plaintext

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