mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-10 02:06:19 +02:00
32 lines
444 B
Plaintext
32 lines
444 B
Plaintext
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
|
|
exports[`Menu renders correctly 1`] = `
|
|
<nav
|
|
className="undefined hideInPrintView"
|
|
>
|
|
<ul>
|
|
<li>
|
|
<a
|
|
href="/"
|
|
>
|
|
Articles
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
href="/pages/about"
|
|
>
|
|
About Me
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
href="/pages/contacts"
|
|
>
|
|
Contact Me
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
`;
|