export function domShow()

in customer/src/utils.js [5:9]


export function domShow(className) {
  const element = domElement(className);
  element.style.display = 'flex';
  element.setAttribute('show', 'true');
}