spreadLayout.spec.jsx.snap 350 B

123456789101112131415161718192021222324
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`SpreadLayout renders with multiple children 1`] = `
  3. <div
  4. className="spread-layout center"
  5. >
  6. <div>
  7. child #1
  8. </div>
  9. <div>
  10. child #2
  11. </div>
  12. </div>
  13. `;
  14. exports[`SpreadLayout renders with one child 1`] = `
  15. <div
  16. className="spread-layout center"
  17. >
  18. <div>
  19. child
  20. </div>
  21. </div>
  22. `;