upd: task divisi

Deskripsi:
- update task divisi
- delete detail task
- update status task
- edit detail task

No Issues
This commit is contained in:
amel
2024-08-19 13:22:02 +08:00
parent 390e13544a
commit e8fcf44558
11 changed files with 592 additions and 20 deletions

View File

@@ -1,4 +1,16 @@
import { hookstate } from "@hookstate/core";
import { IFormMemberTask } from "./type_task";
export const globalMemberTask = hookstate<IFormMemberTask[]>([]);
export const globalMemberTask = hookstate<IFormMemberTask[]>([]);
export const globalRefreshTask = hookstate<boolean>(false);
export const valStatusDetailTask = [
{
name: "Belum Dikerjakan",
value: 0
},
{
name: "Selesai",
value: 1
}
]