Files
5chan/src/components/VerifiedAuthor.jsx
T
2023-09-16 21:40:23 +02:00

12 lines
384 B
React

import React from 'react';
import { useComment, useAuthorAddress } from '@plebbit/plebbit-react-hooks';
function VerifiedAuthor({ commentCid, children }) {
const comment = useComment({ commentCid });
const { authorAddress, shortAuthorAddress } = useAuthorAddress({ comment });
return children({ authorAddress, shortAuthorAddress });
}
export default React.memo(VerifiedAuthor);