updates component explorer

This commit is contained in:
Henning Dieterichs
2026-02-23 20:45:02 +01:00
committed by Henning Dieterichs
parent 0f688387c1
commit 5c4204e60d
12 changed files with 282 additions and 52 deletions

View File

@@ -31,7 +31,7 @@ console.log(greet('World'));
console.log(\`Count: \${counter.count}\`);
`;
function renderCodeEditor({ container, disposableStore, theme }: ComponentFixtureContext): HTMLElement {
function renderCodeEditor({ container, disposableStore, theme }: ComponentFixtureContext): void {
container.style.width = '600px';
container.style.height = '400px';
container.style.border = '1px solid var(--vscode-editorWidget-border)';
@@ -66,8 +66,6 @@ function renderCodeEditor({ container, disposableStore, theme }: ComponentFixtur
));
editor.setModel(model);
return container;
}
export default defineThemedFixtureGroup({