forgeplus-react/src/forge/Server/dataEmpty.jsx

18 lines
916 B
JavaScript
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 React from 'react';
import { Divider} from 'antd';
function DataEmpty(props){
return(
<div className="dataEmpty">
<div className="dataemptyCon">
<img src={require('./img/nullicon.png')} width="68px" alt=""/>
<span className="nullTitle">暂无数据</span>
<p className="nullDesc">重睛鸟代码溯源及安全审查系统是一款完全自主面向主流语言的代码审查大数据平台主要功能包含软件源代码的溯源分析自主度评估开源漏洞检测开源许可证合规性分析支持分析结果多层次可视化展示等可用于提高软件代码的可控性与安全性</p>
<Divider />
<p className="nullSubDesc">对每个仓库可进行代码检测总次数仅为 <span style={{color:"rgba(70, 106, 255, 1)",fontSize:"20px"}}>5</span> </p>
</div>
</div>
)
}
export default DataEmpty;