JSFiddle - React, Tailwind, and code Playground

HTML

<div id="sayduck-3d-viewer-container" style="min-height:450px;min-width:300px;width:100%;height:100%;" data-product-uuid="854fee10-4fdc-0138-5fa8-7a670af172c0" ></div><script defer type="text/javascript" src="https://viewer.sayduck.com"></script>

JavaScript

$(function() {
 document.addEventListener('sayduck.viewer.material.update', e => console.log(e.detail));
 document.addEventListener('sayduck.viewer.gltf.loaded', () => {
   window.dispatchEvent(new CustomEvent('sayduck.viewer.actions.updateMaterial', {
     detail: {
        materialUuid: '57330670-4fde-0138-642a-2a353642fe01',
        baseColorMapUrl: 'https://cdn.sayduck.io/a/shared_assets/files/000/706/601/f54891a8c6208e19cefbc9c00c688880086e3a7187d241e070320c6deb65eab7-original.jpg'
     },
    }));
 }, false);
});