const defaultSketch = `// liveUpdate function drawMask(detection) { stroke('red'); strokeWeight(2); rect(detection.box.x, detection.box.y, detection.box.width, detection.box.height) } `; const defaultHTML = ` `; const defaultCSS = `html, body { margin: 0; padding: 0; } canvas { display: block; } `; export default function createDefaultFiles() { return { 'index.html': { content: defaultHTML }, 'style.css': { content: defaultCSS }, 'sketch.js': { content: defaultSketch } }; }