renderer.js 282 B

123456789
  1. // This file is required by the index.html file and will
  2. // be executed in the renderer process for that window.
  3. // All of the Node.js APIs are available in this process.
  4. console.log('hello world!')
  5. document.body.addEventListener('click', () => {
  6. console.log('hello vscode!')
  7. })