regexper-static/src/components/__snapshots__/Message.test.js.snap
Jeff Avallone c368e9031f Reworking Message component
* Supporting URLs for icon
* Moving styles into top-level stylesheet for use in the template
2018-02-11 06:41:15 -05:00

29 lines
343 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Message rendering 1`] = `
<div
className="message"
>
<h2>
Testing
</h2>
<p>
Message content
</p>
</div>
`;
exports[`Message rendering with icon 1`] = `
<div
className="message"
>
<h2>
Sample icon SVG
Testing
</h2>
<p>
Message content
</p>
</div>
`;