/
githubmirror
/
wp-calypso
Обзор
Документация
Войти
/
githubmirror
/
wp-calypso
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
client/blocks/reader-author-link/docs/example.tsx
18 строк
508 B
Griffith Chen
client/blocks: React 19 forward-compatible (behavior-preserving) (#111506)
11 июн 2026, 03:01
Не верифицирован
11 июн 2026, 03:01
1bac033
Код
Авторство
О чём код?
import { Card } from '@automattic/components'; import ReaderAuthorLink, { ReaderLinkAuthor } from 'calypso/blocks/reader-author-link'; import type { JSX } from 'react'; 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';