globalThis.Usaha = {
content: `
`,
action: function(){
setTimeout(function(){
document.getElementById('app-content-title').innerText = "Data Usaha";
table('usaha')
.equals(['kode'])
.title('Usaha')
.createForm({
kode: {
form: 'input',
type: 'text',
placeholder: 'Inputkan Kode',
title: 'Kode'
},
keterangan: {
form: 'input',
type: 'text',
placeholder: 'Inputkan keterangan',
title: 'Keterangan'
}
})
.row({
kode: 'Kode',
keterangan: 'Ketarangan'
})
.load()
})
}
}