13 lines
173 B
Markdown
13 lines
173 B
Markdown
|
```jsx
|
||
|
import { Link } from '@woocommerce/components';
|
||
|
|
||
|
const MyLink = () => (
|
||
|
<Link
|
||
|
href="edit.php?post_type=shop_coupon"
|
||
|
type="wp-admin"
|
||
|
>
|
||
|
Coupons
|
||
|
</Link>
|
||
|
);
|
||
|
```
|