Changed file names / reference file consistency

This commit is contained in:
AlexanderBuzz
2023-07-31 20:36:55 +02:00
parent 729687b75f
commit 781cf354bf
36 changed files with 88 additions and 88 deletions

View File

@@ -0,0 +1,7 @@
const ledgerIndexEl = document.getElementById('ledger-index')
// Here we define the callback function that performs the content update
// whenever 'update-ledger-index' is called by the main process
window.electronAPI.onUpdateLedgerIndex((_event, value) => {
ledgerIndexEl.innerText = value
})