import React from 'react'; import KnowledgeCard from './KnowledgeCard'; import { useDispatch } from 'react-redux'; import { showNotification } from '../../store/notification.slice'; import SvgIcon from '../../components/SvgIcon'; export default function KnowledgeBase() { const dispatch = useDispatch(); const knowledgeList = [ { title: '产品开发知识库', description: '产品开发流程及规范说明文档', documents: 24, date: '2025-02-15', access: 'full', }, { title: '市场分析知识库', description: '2025年Q1市场分析总结', documents: 12, date: '2025-02-10', access: 'read', }, { title: '财务知识库', description: '月度财务分析报告', documents: 8, date: '2025-02-01', access: 'none' }, ]; return (
{knowledgeList.map((item, index) => ( ))}
); }