Files
2026-07-13 12:30:05 +08:00

22 lines
443 B
TypeScript

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
interface ScreenshotData {
html: string;
}
export const screenshots: Record<string, ScreenshotData> = {
basic: {
html: '<div>Hello MCP</div>',
},
viewportOverflow: {
html: '<div style="height: 120vh; background-color: rebeccapurple;">View Port overflow</div>',
},
button: {
html: '<button>I am button click me</button>',
},
};