RMO-Front/src/pages/KnowledgePvInsurance.tsx

39 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import PageContainer from '../components/PageContainer'
import PageHeader from '../components/PageHeader'
import './KnowledgeBase.css'
function KnowledgePvInsurance() {
return (
<PageContainer>
<div className="knowledge-page">
<PageHeader
title="PV与保险"
description="药物警戒与保险的深度融合"
/>
<div className="page-body">
<section className="section">
<div className="container">
<div className="knowledge-content">
<div className="knowledge-card">
<h3>PV数据在保险中的应用</h3>
<p></p>
</div>
<div className="knowledge-card">
<h3></h3>
<p>PV系统识别风险信号</p>
</div>
<div className="knowledge-card">
<h3></h3>
<p>PV与保险相结合</p>
</div>
</div>
</div>
</section>
</div>
</div>
</PageContainer>
)
}
export default KnowledgePvInsurance