html_elements.js 169 B

123456
  1. function createTag(type) {
  2. // return {appendChild:function(){},setAttribute:function(){},style:{}}
  3. return document.createElement(type);
  4. }
  5. export default createTag;