redux-devtools/packages/redux-devtools-ui/test/__snapshots__/Slider.test.tsx.snap
Nathan Bierema 61632768a7
Replace styled-components with Emotion (#1883)
* Replace styled-components with Emotion in ui

* react-dock

* Remainder

* Fix

* Format

* Update snapshots

* Create bright-sheep-joke.md
2025-06-01 13:59:13 +00:00

34 lines
412 B
Plaintext

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