This commit is contained in:
hailin 2025-06-23 01:59:29 +08:00
parent 8f79ad000f
commit 6ce87f07f4
1 changed files with 2 additions and 1 deletions

View File

@ -106,7 +106,8 @@ const NineGrid: React.FC<NineGridProps> = ({
const [selectedCategory, setSelectedCategory] = useState(categoriesRef.current[0].value);
const [articleDataList, setArticleDataList] = useState([]);
//const [articleDataList, setArticleDataList] = useState([]);
const [articleDataList, setArticleDataList] = useState<ArticleData[]>([]);
const [currentPage, setCurrentPage] = React.useState(0);
const [isQA, setIsQA] = useState(false);