feat: add labels ui page

This commit is contained in:
allanice001
2025-11-03 12:23:20 +00:00
parent 9d60b6cbfe
commit ee824a9c5a
30 changed files with 360 additions and 2005 deletions

View File

@@ -12,6 +12,10 @@ export const taintsApi = {
withRefresh(async () => {
return await taints.createTaint({ body })
}),
getTaint: (id: string) =>
withRefresh(async () => {
return await taints.getTaint({ id })
}),
deleteTaint: (id: string) =>
withRefresh(async () => {
await taints.deleteTaint({ id })