export const createInputElement = function(hasPlaceholder, type) {
  let element = "<input type=\"" + (type || "text") +
                "\" id=\"elem\" maxlength=\"12\""
  if (hasPlaceholder) {
    element += " placeholder=\"Test\""