feat: heading for user input

This commit is contained in:
karishmas6
2024-08-31 02:05:53 +05:30
parent bc6dbabc87
commit f072b31c2d

View File

@@ -180,7 +180,7 @@ export const RightSidePanel = () => {
<Typography>How can we find the next list item on the page?</Typography>
<Button variant={selectedPaginationSetting === 'clickNext' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('clickNext')}>Click on next to navigate to the next page</Button>
<Button variant={selectedPaginationSetting === 'clickLoadMore' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('clickLoadMore')}>Click on load more to load more items</Button>
<Button variant={selectedPaginationSetting === 'Option 3' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('Option 3')}>Scroll down to load more items</Button>
<Button variant={selectedPaginationSetting === 'scrollDown' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('scrollDown')}>Scroll down to load more items</Button>
<Button variant={selectedPaginationSetting === 'Option 4' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('Option 4')}>Scroll up to load more items</Button>
<Button variant={selectedPaginationSetting === 'Option 5' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('Option 5')}>No more items to load</Button>
</Box>