You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.0 KiB

7 years ago
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Drawer render correctly 1`] = `
<div>
<button
class="ant-btn ant-btn-clicked"
type="button"
>
<span>
open
</span>
</button>
<div
class=""
>
<div
class="ant-drawer ant-drawer-right ant-drawer-open"
>
<div
class="ant-drawer-mask"
/>
7 years ago
<div
class="ant-drawer-content-wrapper"
style="width: 256px;"
7 years ago
>
<div
class="ant-drawer-content"
7 years ago
>
<div
class="ant-drawer-wrapper-body"
style="overflow: auto; height: 100%;"
7 years ago
>
<button
aria-label="Close"
class="ant-drawer-close"
>
<span
class="ant-drawer-close-x"
/>
</button>
7 years ago
<div
class="ant-drawer-body"
7 years ago
>
Here is content of Drawer
7 years ago
</div>
</div>
</div>
</div>
</div>
</div>
</div>
`;