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.
21 lines
757 B
21 lines
757 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Drawer render correctly 1`] = `
|
|
<div>
|
|
<button type="button" class="ant-btn ant-btn-default"><span>open</span></button>
|
|
<div>
|
|
<div class="ant-drawer ant-drawer-right">
|
|
<div class="ant-drawer-mask"></div>
|
|
<div class="ant-drawer-content-wrapper" style="transform: translateX(100%); width: 256px;">
|
|
<div class="ant-drawer-content">
|
|
<div class="ant-drawer-wrapper-body" style="overflow: auto; height: 100%;">
|
|
<button aria-label="Close" class="ant-drawer-close"><span class="ant-drawer-close-x"></span></button>
|
|
<div class="ant-drawer-body">Here is content of Drawer</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|