mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-15 22:26:53 +03:00
922985f9ea
* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
133 lines
2.0 KiB
Plaintext
133 lines
2.0 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
||
exports[`Dialog renders correctly 1`] = `
|
||
<div
|
||
class="sc-jXbUNg bziNId"
|
||
>
|
||
<div />
|
||
<div>
|
||
<div
|
||
class="mc-dialog--header"
|
||
>
|
||
<div />
|
||
<button>
|
||
×
|
||
</button>
|
||
</div>
|
||
<div
|
||
class="mc-dialog--body"
|
||
/>
|
||
<div
|
||
class="mc-dialog--footer"
|
||
>
|
||
<div
|
||
class="sc-dcJsrY dAhqLr"
|
||
>
|
||
<button
|
||
class="sc-eqUAAy fNGiZB"
|
||
>
|
||
Cancel
|
||
</button>
|
||
</div>
|
||
<div
|
||
class="sc-dcJsrY dAhqLr"
|
||
>
|
||
<button
|
||
class="sc-eqUAAy jJvjWh"
|
||
>
|
||
Submit
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
`;
|
||
|
||
exports[`Dialog renders modal 1`] = `
|
||
<div
|
||
class="sc-jXbUNg bziNId"
|
||
>
|
||
<div />
|
||
<div>
|
||
<div
|
||
class="mc-dialog--header"
|
||
>
|
||
<div />
|
||
</div>
|
||
<div
|
||
class="mc-dialog--body"
|
||
/>
|
||
<div
|
||
class="mc-dialog--footer"
|
||
>
|
||
<div
|
||
class="sc-dcJsrY dAhqLr"
|
||
>
|
||
<button
|
||
class="sc-eqUAAy fNGiZB"
|
||
>
|
||
Cancel
|
||
</button>
|
||
</div>
|
||
<div
|
||
class="sc-dcJsrY dAhqLr"
|
||
>
|
||
<button
|
||
class="sc-eqUAAy jJvjWh"
|
||
>
|
||
Submit
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
`;
|
||
|
||
exports[`Dialog renders with props 1`] = `
|
||
<div
|
||
class="sc-jXbUNg cXoIGe"
|
||
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="sc-dcJsrY dAhqLr"
|
||
>
|
||
<button
|
||
class="sc-eqUAAy fNGiZB"
|
||
>
|
||
Cancel
|
||
</button>
|
||
</div>
|
||
<div
|
||
class="sc-dcJsrY dAhqLr"
|
||
>
|
||
<button
|
||
class="sc-eqUAAy jJvjWh"
|
||
>
|
||
Submit
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
`;
|