mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-24 17:38:40 +08:00
33 lines
567 B
Plaintext
33 lines
567 B
Plaintext
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`DateSeparator renders the date separator correctly 1`] = `
|
||
|
<Wrapper
|
||
|
now="2021-12-17T08:09:00.000Z"
|
||
|
ts={1639728540000}
|
||
|
>
|
||
|
<DateSeparator
|
||
|
now="2021-12-17T08:09:00.000Z"
|
||
|
ts={1639728540000}
|
||
|
>
|
||
|
<h2
|
||
|
aria-label="Today"
|
||
|
className="mx_DateSeparator"
|
||
|
role="separator"
|
||
|
tabIndex={-1}
|
||
|
>
|
||
|
<hr
|
||
|
role="none"
|
||
|
/>
|
||
|
<div
|
||
|
aria-hidden="true"
|
||
|
>
|
||
|
Today
|
||
|
</div>
|
||
|
<hr
|
||
|
role="none"
|
||
|
/>
|
||
|
</h2>
|
||
|
</DateSeparator>
|
||
|
</Wrapper>
|
||
|
`;
|