14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
import React from "react";
|
|
import { canUseDOM } from "vtex.render-runtime";
|
|
|
|
export function PlaceHolderCep() {
|
|
if (canUseDOM) {
|
|
const myPlaceHolder = document.querySelector(
|
|
".vtex-address-form-4-x-input"
|
|
);
|
|
myPlaceHolder?.setAttribute("placeholder", "Digite seu CEP");
|
|
}
|
|
|
|
return <></>;
|
|
}
|