mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-02-04 21:53:12 +08:00
28 lines
743 B
TypeScript
28 lines
743 B
TypeScript
"use client"
|
|
|
|
import React from "react"
|
|
import { VulnerabilitiesDetailView } from "@/components/vulnerabilities"
|
|
|
|
/**
|
|
* 全部漏洞页面
|
|
* 显示系统中所有漏洞
|
|
*/
|
|
export default function VulnerabilitiesPage() {
|
|
return (
|
|
<div className="flex flex-col gap-4 py-4 md:gap-6 md:py-6">
|
|
{/* 页面头部 */}
|
|
<div className="flex items-center justify-between px-4 lg:px-6">
|
|
<div>
|
|
<h2 className="text-2xl font-bold tracking-tight">漏洞管理</h2>
|
|
<p className="text-muted-foreground">查看和管理所有扫描发现的漏洞</p>
|
|
</div>
|
|
</div>
|
|
|
|
{/* 漏洞列表 */}
|
|
<div className="px-4 lg:px-6">
|
|
<VulnerabilitiesDetailView />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|