/**
|
* 徐祥健<xuxj@hugeinfo.com.cn>
|
* 2018年7月17日 14:59
|
*
|
*/
|
|
|
import React from 'react';
|
// import { Link } from 'react-router-dom';
|
// import { Modal } from 'antd-mobile';
|
// import { Icon } from 'antd';
|
// import chunk from 'lodash/chunk';
|
// import tree from 'hife/tree';
|
|
import './style.scss';
|
|
export default function LinkView({ local ,sed}) {
|
return (
|
<div className="link-view-main">
|
后台中心 / {sed} /<span style={{color:'#1790FF'}}>{local}</span>
|
</div>
|
);
|
|
}
|