mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-23 06:15:49 +00:00
55 lines
746 B
Text
55 lines
746 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`PageCount #title 1`] = `
|
|
<a
|
|
className="c-explorer__see-more"
|
|
href="/admin/pages/1/"
|
|
tabIndex={0}
|
|
>
|
|
See all
|
|
<span>
|
|
5 pages
|
|
</span>
|
|
<Icon
|
|
className=""
|
|
name="arrow-right"
|
|
title={null}
|
|
/>
|
|
</a>
|
|
`;
|
|
|
|
exports[`PageCount plural 1`] = `
|
|
<a
|
|
className="c-explorer__see-more"
|
|
href="/admin/pages/1/"
|
|
tabIndex={0}
|
|
>
|
|
See all
|
|
<span>
|
|
5 pages
|
|
</span>
|
|
<Icon
|
|
className=""
|
|
name="arrow-right"
|
|
title={null}
|
|
/>
|
|
</a>
|
|
`;
|
|
|
|
exports[`PageCount works 1`] = `
|
|
<a
|
|
className="c-explorer__see-more"
|
|
href="/admin/pages/1/"
|
|
tabIndex={0}
|
|
>
|
|
See all
|
|
<span>
|
|
1 page
|
|
</span>
|
|
<Icon
|
|
className=""
|
|
name="arrow-right"
|
|
title={null}
|
|
/>
|
|
</a>
|
|
`;
|