From b3a0fb1e4aac74dd1d573f4ec1b2ecaa22835d60 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 4 Sep 2024 23:59:09 +0530 Subject: [PATCH] feat: pagination mode state --- src/components/organisms/BrowserWindow.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/organisms/BrowserWindow.tsx b/src/components/organisms/BrowserWindow.tsx index db474ae0..41931828 100644 --- a/src/components/organisms/BrowserWindow.tsx +++ b/src/components/organisms/BrowserWindow.tsx @@ -55,6 +55,8 @@ export const BrowserWindow = () => { const [attributeOptions, setAttributeOptions] = useState([]); const [selectedElement, setSelectedElement] = useState<{ selector: string, info: ElementInfo | null } | null>(null); const [currentListId, setCurrentListId] = useState(null); + const [paginationMode, setPaginationMode] = useState(false); + const [paginationSelector, setPaginationSelector] = useState(null); const [listSelector, setListSelector] = useState(null); const [fields, setFields] = useState>({});