12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
|
export const InsertJS = () => {
|
||
|
|
||
|
// INSERIR PLACEHOLDER NO INPUT CEP
|
||
|
if (typeof document !== 'undefined') {
|
||
|
const inputCEP = document.querySelector(".vtex-address-form-4-x-input");
|
||
|
inputCEP?.setAttribute("placeholder", "Digite seu CEP")
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
|
||
|
}
|