globalThis.Wilayah = {
content: `
`,
action: function(){
setTimeout(function(){
document.getElementById('app-content-title').innerText = "Data Wilayah";
table('wilayah')
.title('wilayah')
.equals(['kode'])
.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()
})
}
}