UNPKG

@wordpress/components

Version:
18 lines (14 loc) 426 B
/** * External dependencies */ import { text } from '@storybook/addon-knobs'; /** * Internal dependencies */ import ExternalLink from '../'; export default { title: 'Components/ExternalLink', component: ExternalLink }; export const _default = () => { const title = text( 'children', 'WordPress' ); const href = text( 'href', 'https://wordpress.org' ); return <ExternalLink href={ href }>{ title }</ExternalLink>; };