Initial commit
This commit is contained in:
20
src/pages/ProcessMatrixPage.tsx
Normal file
20
src/pages/ProcessMatrixPage.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* 49过程矩阵页面
|
||||
*/
|
||||
import { ProcessMatrix } from '@/components/visualize'
|
||||
|
||||
export function ProcessMatrixPage() {
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
<div>
|
||||
<h1 className="text-2xl font-bold text-gray-900 dark:text-white">49过程矩阵</h1>
|
||||
<p className="text-gray-500 dark:text-gray-400 mt-1">
|
||||
知识领域 × 过程组 的全景矩阵视图,点击过程可查看详情
|
||||
</p>
|
||||
</div>
|
||||
<div className="bg-white dark:bg-gray-800 rounded-xl shadow-sm border border-gray-100 dark:border-gray-700 p-4 overflow-hidden">
|
||||
<ProcessMatrix />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user