我是歌谣 微信公众号关注前端小歌谣
import { useRecordContext, Show, SimpleShowLayout } from 'react-admin';
const BookAuthor = () => {
const record = useRecordContext();
if (!record) return null;
return <span>{record.author}</span>;
};
const BookShow = () => (
<Show>
<SimpleShowLayout>
<BookAuthor />
...
</SimpleShowLayout>
</Show>
)
标签:const,自定义,admin,useRecordContext,react,record,return
From: https://blog.51cto.com/u_15460007/7173064