File size: 474 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Card } from '@automattic/components';
import ReaderAuthorLink, { ReaderLinkAuthor } from 'calypso/blocks/reader-author-link';

export default function ReaderAuthorLinkExample(): JSX.Element {
	const author: ReaderLinkAuthor = {
		URL: 'http://wpcalypso.wordpress.com',
		name: 'Barnaby Blogwit',
	};

	return (
		<Card>
			<ReaderAuthorLink author={ author }>Author site</ReaderAuthorLink>
		</Card>
	);
}

ReaderAuthorLinkExample.displayName = 'ReaderAuthorLink';