mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 04:46:10 +01:00
8cda817f5c
* Add hardcoded list of human-readable snap names * Make the text properly bold * Small style fixes to approval screen * Run yarn lint:fix * Update snapshots
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`SwapsFooter renders the component with initial props 1`] = `
|
|
<div>
|
|
<div
|
|
class="swaps-footer"
|
|
>
|
|
<div
|
|
class="swaps-footer__buttons"
|
|
>
|
|
<div
|
|
class="page-container__footer swaps-footer__custom-page-container-footer-class"
|
|
>
|
|
<footer>
|
|
<button
|
|
class="button btn--rounded btn-secondary page-container__footer-button page-container__footer-button__cancel swaps-footer__custom-page-container-footer-button-class"
|
|
data-testid="page-container-footer-cancel"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
Back
|
|
</button>
|
|
<button
|
|
class="button btn--rounded btn-primary page-container__footer-button swaps-footer__custom-page-container-footer-button-class"
|
|
data-testid="page-container-footer-next"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
submitText
|
|
</button>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="swaps-footer__bottom-text"
|
|
>
|
|
Terms of service
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|