sample.vdom.js 170 B

12345678910111213
  1. ({
  2. type: 'div',
  3. style: {
  4. justifyContent: 'center'
  5. },
  6. children: [{
  7. type: 'text',
  8. attr: {
  9. value: 'Yo'
  10. },
  11. classList: ['freestyle']
  12. }]
  13. })