ohctechv3/.svn/pristine/2b/2b82af853ba52975e75a8e5a862ef4fc933b7da5.svn-base
2024-10-28 15:03:36 +05:30

7 lines
169 B
Plaintext

function createTag(type) {
// return {appendChild:function(){},setAttribute:function(){},style:{}}
return document.createElement(type);
}
export default createTag;