redux-devtools/packages/redux-devtools-ui/test/__snapshots__/Dialog.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

133 lines
1.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Dialog renders correctly 1`] = `
<div
class="css-1nze9tl"
>
<div />
<div>
<div
class="mc-dialog--header"
>
<div />
<button>
×
</button>
</div>
<div
class="mc-dialog--body"
/>
<div
class="mc-dialog--footer"
>
<div
class="css-jg680o"
>
<button
class="css-g2zi5"
>
Cancel
</button>
</div>
<div
class="css-jg680o"
>
<button
class="css-1td9y62"
>
Submit
</button>
</div>
</div>
</div>
</div>
`;
exports[`Dialog renders modal 1`] = `
<div
class="css-1nze9tl"
>
<div />
<div>
<div
class="mc-dialog--header"
>
<div />
</div>
<div
class="mc-dialog--body"
/>
<div
class="mc-dialog--footer"
>
<div
class="css-jg680o"
>
<button
class="css-g2zi5"
>
Cancel
</button>
</div>
<div
class="css-jg680o"
>
<button
class="css-1td9y62"
>
Submit
</button>
</div>
</div>
</div>
</div>
`;
exports[`Dialog renders with props 1`] = `
<div
class="css-1cbskzi"
open=""
>
<div />
<div>
<div
class="mc-dialog--header"
>
<div>
Dialog Title
</div>
<button>
×
</button>
</div>
<div
class="mc-dialog--body"
>
Hello Dialog!
</div>
<div
class="mc-dialog--footer"
>
<div
class="css-jg680o"
>
<button
class="css-g2zi5"
>
Cancel
</button>
</div>
<div
class="css-jg680o"
>
<button
class="css-1td9y62"
>
Submit
</button>
</div>
</div>
</div>
</div>
`;