faasjs/faasjs

View on GitHub
packages/ant-design/functions/Link.md

Summary

Maintainability
Test Coverage
[@faasjs/ant-design](../README.md) / Link

# Function: Link()

> **Link**(`props`): `Element`

Link component with button

## Parameters

• **props**: [`LinkProps`](../interfaces/LinkProps.md)

## Returns

`Element`

## Example

```tsx
// pure link
<Link href="/">Home</Link>

// link with button
<Link href="/" button={{ type:'primary' }}>Home</Link>
```