domql icon indicating copy to clipboard operation
domql copied to clipboard

Add DOMQL sugar syntax

Open nikoloza opened this issue 1 year ago • 0 comments

const Component = {
  // props
  background: '',
  text: '12321',
  sdas: '',

  // events
  onClick: () => {},

  // children elements (with capital case)
  Asd: {
    extend: 'Button',
    tag: 'asd',
    background: '',
    text: '12321',
    sdas: '',

    Box: {}
  }
}

nikoloza avatar Dec 01 '23 05:12 nikoloza