import React from "react"; import { useAccountComment } from "@plebbit/plebbit-react-hooks"; import useStateString from "../hooks/useStateString"; const StateLabel = ({ commentIndex, className }) => { const comment = useAccountComment({commentIndex: commentIndex}); const stateString = useStateString(comment); if (comment.updatedAt !== undefined) { return null; } if (comment.state === "failed") { return null; } if (!stateString) { return null; } return (
( {stateString} )
); }; export default StateLabel;