Add dependencies and update code for PDF parsing and searching
This commit is contained in:
11
src/store/webui.tsx
Normal file
11
src/store/webui.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { create } from "zustand"
|
||||
|
||||
type State = {
|
||||
sendWhenEnter: boolean
|
||||
setSendWhenEnter: (sendWhenEnter: boolean) => void
|
||||
}
|
||||
|
||||
export const useWebUI = create<State>((set) => ({
|
||||
sendWhenEnter: true,
|
||||
setSendWhenEnter: (sendWhenEnter) => set({ sendWhenEnter })
|
||||
}))
|
||||
Reference in New Issue
Block a user