{
const url = await FileAttachment("blip.wav").url();
const sound = new Tone.Player(url).toDestination();
const play = () => sound.start();
await Tone.loaded;
const app = cm.render({
width: 100,
height: 100,
draw: [SVG.circle({ cx: 50, cy: 50, r: 50, onclick: play })]
});
return app.node();
}