feat: phone slider

This commit is contained in:
archer
2023-07-26 11:59:12 +08:00
parent 248be38939
commit ffdef41bf2
24 changed files with 275 additions and 166 deletions

View File

@@ -18,7 +18,7 @@ const Kb = () => {
const theme = useTheme();
const router = useRouter();
const { toast } = useToast();
const { openConfirm, ConfirmChild } = useConfirm({
const { openConfirm, ConfirmModal } = useConfirm({
title: '删除提示',
content: '确认删除该知识库?'
});
@@ -152,7 +152,7 @@ const Kb = () => {
</Box>
</Flex>
)}
<ConfirmChild />
<ConfirmModal />
</PageContainer>
);
};