Initial commit
This commit is contained in:
commit
c4626edee4
19 changed files with 11968 additions and 0 deletions
15
renderer.js
Normal file
15
renderer.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
console.log("hello world! yooo");
|
||||
|
||||
const information = document.getElementById('info');
|
||||
information.innerText = `This app is using Chrome (v${versions.chrome()}), Node.js (v${versions.node()}), and Electron (v${versions.electron()})`;
|
||||
|
||||
async function func() {
|
||||
const response = await versions.ping();
|
||||
console.log(response);
|
||||
return response;
|
||||
}
|
||||
|
||||
func().then(x => {
|
||||
console.log("is this working? ", x);
|
||||
});
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue