mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
22 lines
340 B
Plaintext
22 lines
340 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`I18N Helper getMessage renders substitutions inside span if substitutions include React components 1`] = `
|
|
<div>
|
|
<span>
|
|
|
|
<div
|
|
style="color: orange;"
|
|
>
|
|
a1
|
|
</div>
|
|
<div
|
|
style="color: pink;"
|
|
>
|
|
b2
|
|
</div>
|
|
c3
|
|
|
|
</span>
|
|
</div>
|
|
`;
|