2023-09-29 19:14:53 -07:00

8 lines
210 B
JavaScript

// This script will be run within the webview itself
// It cannot access the main VS Code APIs directly.
(function () {
const vscode = acquireVsCodeApi();
console.log("hello there from javascript");
})();