Skip to content

Latest commit

 

History

History
52 lines (47 loc) · 855 Bytes

test.js.md

File metadata and controls

52 lines (47 loc) · 855 Bytes

Snapshot report for test.js

The actual snapshot is saved in test.js.snap.

Generated by AVA.

returns components

Snapshot 1

`␊
  import sys from 'system-components'␊


export const Heading = sys(␊
  {␊
  "m": 0,␊
  "fontSize": 32,␊
  "color": "tomato",␊
  "is": "h2"␊
},␊


)␊
Heading.displayName = 'Heading'␊



export const Box = sys(␊
  {},␊


)␊
Box.displayName = 'Box'␊



export const Button = sys(␊
  {␊
  "is": "button"␊
},␊
  'appearance:none;',␊

)␊
Button.displayName = 'Button'␊


  export default {␊
    Heading,␊
Box,␊
Button␊
  }`