forked from Gitlink/forgeplus-react
13 lines
428 B
JavaScript
13 lines
428 B
JavaScript
import React from 'react';
|
|
import { AlignCenterBetween } from '../../Component/layout';
|
|
|
|
|
|
function head(){
|
|
return(
|
|
<AlignCenterBetween>
|
|
<span className="font-20">工作流配置</span>
|
|
<a href={`https://forum.trustie.net/forums/3111/detail`} target="_blank" className="color-grey-6"><i className="iconfont icon-tishi1 font-14 mr3"></i>模板使用说明</a>
|
|
</AlignCenterBetween>
|
|
)
|
|
}
|
|
export default head; |