CodeCommitsIssuesPull requestsActionsInsightsSecurity
master

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

app/lib/create-element.js

7lines · modecode

1export default function createElement(type = "div", properties = {}) {
2 const element = document.createElement(type)
3
4 Object.assign(element, properties)
5
6 return element
7}