mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-10 10:16:21 +02:00
46 lines
778 B
Plaintext
46 lines
778 B
Plaintext
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
|
|
exports[`Layout renders correctly 1`] = `
|
|
<div>
|
|
test
|
|
<div
|
|
className="CookieConsent"
|
|
style={
|
|
{
|
|
"bottom": "0",
|
|
}
|
|
}
|
|
>
|
|
<div
|
|
className=""
|
|
style={{}}
|
|
>
|
|
This website uses cookies to enhance the user experience.
|
|
|
|
<small>
|
|
Click
|
|
<a
|
|
href="/pages/legal/cookies"
|
|
>
|
|
here
|
|
</a>
|
|
to learn more about cookies.
|
|
</small>
|
|
</div>
|
|
<div
|
|
className=""
|
|
>
|
|
<button
|
|
aria-label="Accept cookies"
|
|
className=""
|
|
id="rcc-confirm-button"
|
|
onClick={[Function]}
|
|
style={{}}
|
|
>
|
|
I understand
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|