'use strict'; var _preact = require('preact'); /** @jsx h */ var Comp = function Comp(_ref) { var children = _ref.children; console.log(children); return children; }; var val = 'xx'; (0, _preact.render)((0, _preact.h)( Comp, null, val, 'Hello' ), document.getElementById('app'));