ant-design/components/grid/__tests__/__snapshots__/index.test.js.snap
Wei Zhu ca7d265b2b Refactor Grid with new context API (#12320)
* Refactor Grid with new context API

* Update snapshots of List
2018-09-21 19:30:39 +08:00

32 lines
513 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Grid renders wrapped Col correctly 1`] = `
<div
class="ant-row"
style="margin-left:-10px;margin-right:-10px"
>
<div>
<div
class="ant-col-12"
style="padding-left:10px;padding-right:10px"
/>
</div>
<div
class="ant-col-12"
style="padding-left:10px;padding-right:10px"
/>
</div>
`;
exports[`Grid should render Col 1`] = `
<div
class="ant-col-2"
/>
`;
exports[`Grid should render Row 1`] = `
<div
class="ant-row"
/>
`;