redux-devtools/packages/devui/tests/__snapshots__/Slider.test.tsx.snap
Nathan Bierema 55e2284a3d
chore(*): upgrade prettier (#743)
* chore(*): upgrade prettier

* Update snapshots
2021-06-17 23:56:36 -04:00

33 lines
415 B
Plaintext

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