Skip to content

Instantly share code, notes, and snippets.

@ofonimefrancis
Last active December 14, 2018 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ofonimefrancis/c5c58c5facd8984627f0a2ce14e8e117 to your computer and use it in GitHub Desktop.
Save ofonimefrancis/c5c58c5facd8984627f0a2ce14e8e117 to your computer and use it in GitHub Desktop.
const ipc = require('electron').ipcRenderer
const listView = document.getElementById('nav__list')
listView.addEventListener('click', () => {
const listing = ipc.sendSync('listview', 'see listings')
document.getElementById('main-content').innerHTML = listing
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment