瀏覽代碼

Restore useLabelStore mistakenly removed in commit 403e2d58 (#24052)

Co-authored-by: Yongtao Huang <99629139+hyongtao-db@users.noreply.github.com>
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
tags/1.8.0
Yongtao Huang 2 月之前
父節點
當前提交
ff52a54fef
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 15 行新增0 行删除
  1. 15
    0
      web/app/components/tools/labels/store.ts

+ 15
- 0
web/app/components/tools/labels/store.ts 查看文件

@@ -0,0 +1,15 @@
import { create } from 'zustand'
import type { Label } from './constant'

type State = {
labelList: Label[]
}

type Action = {
setLabelList: (labelList?: Label[]) => void
}

export const useStore = create<State & Action>(set => ({
labelList: [],
setLabelList: labelList => set(() => ({ labelList })),
}))

Loading…
取消
儲存