sample.vdom.js 235 B

1234567891011121314151617
  1. ({
  2. type: 'div',
  3. style: {
  4. justifyContent: 'center'
  5. },
  6. children: [{
  7. type: 'text',
  8. attr: {
  9. value: 'Yo'
  10. },
  11. style: {
  12. color: '#41B883',
  13. fontSize: '233px',
  14. textAlign: 'center'
  15. }
  16. }]
  17. })