mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
023249a944
* migration of HeaderBase to use TS Box version * migration of HeaderBase to use TS Box version * update snapshot * fix lint error * Some small updates to types and removing deprecated storyook functions --------- Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
21 lines
515 B
Plaintext
21 lines
515 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`ModalHeader should render ModalHeader correctly 1`] = `
|
|
<div>
|
|
<div
|
|
class="mm-box mm-header-base mm-modal-header mm-box--display-flex mm-box--justify-content-space-between"
|
|
data-testid="modal-header"
|
|
>
|
|
<div
|
|
class="mm-box mm-box--width-full"
|
|
>
|
|
<header
|
|
class="mm-box mm-text mm-text--heading-sm mm-text--text-align-center mm-box--color-text-default"
|
|
>
|
|
Modal header
|
|
</header>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|