import { NoteRender } from 'components/Notes/NoteRender' import { useTextLimit } from 'hooks' interface CommentContentProps { content: string } export const CommentContent = ({ content }: CommentContentProps) => { const { text, isTextOverflowing, isExpanded, toggle } = useTextLimit(content) return ( <> {isExpanded && (
Hide full post
View full post