123456789101112131415161718192021222324 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`SpreadLayout renders with multiple children 1`] = `
- <div
- className="spread-layout center"
- >
- <div>
- child
- </div>
- <div>
- child
- </div>
- </div>
- `;
- exports[`SpreadLayout renders with one child 1`] = `
- <div
- className="spread-layout center"
- >
- <div>
- child
- </div>
- </div>
- `;
|