zent
Version:
一套前端设计语言和基于React的实现
30 lines (26 loc) • 392 B
Markdown
order: 1
zh-CN:
title: 强文字链接
index: 有赞首页
en-US:
title: Link
index: Index
```jsx
import { Link } from 'zent';
ReactDOM.render(
<div>
<Link href="https://youzan.com" target="_blank">{i18n.index}</Link>
<Link href="https://youzan.com" disabled>
{i18n.index}
</Link>
</div>,
mountNode
);
```
<style>
.zent-link {
margin-left: 10px;
}
</style>