import React from 'react'; import SvgIcon from '../../components/SvgIcon'; export default function KnowledgeCard({ id, title, description, documents, date, access, onClick }) { return (
{title}
  • 删除

{description}

{documents} 文档 {date}
{access === 'full' ? ( 完全访问 ) : access === 'read' ? ( 只读访问 ) : ( 无访问权限 )} {access === 'full' || access === 'read' ? ( ) : ( )}
); }