Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const setButton = document.getElementById('btn')
const titleInput = document.getElementById('title')
setButton.addEventListener('click', () => {
const title = titleInput.value
window.electronAPI.setTitle(title)
})