{
+ const [formValues, setFormValues] = useFormStore((state) => [state.chatHistoryForm, state.setChatHistoryForm]);
+
+ const handleSubmit = useCallback((values) => {
+ setFormValues({ ...values });
+ }, []);
+ return (
+
+
+
+ {/*
+
+
+
+
+ */}
+
+ );
+};
+export default History;
diff --git a/src/views/mobile/SecondHeaderWrapper.jsx b/src/views/mobile/SecondHeaderWrapper.jsx
index a60479d..6c9ccd5 100644
--- a/src/views/mobile/SecondHeaderWrapper.jsx
+++ b/src/views/mobile/SecondHeaderWrapper.jsx
@@ -1,7 +1,7 @@
import { createContext, useContext, useEffect, useState } from 'react';
import { NavLink, Outlet, Link, useNavigate } from 'react-router-dom';
import { Layout, Button, Flex, theme } from 'antd';
-import { LeftOutlined, HomeOutlined } from '@ant-design/icons';
+import { LeftOutlined, HomeOutlined, FileSearchOutlined } from '@ant-design/icons';
const { Content, Header } = Layout;
const HeaderWrapper = ({ children, ...props }) => {
@@ -17,7 +17,10 @@ const HeaderWrapper = ({ children, ...props }) => {
style={{ position: 'sticky', top: 0, zIndex: 1, width: '100%', background: 'white' }}>