import { useTextLimit } from 'hooks/useTextLimit' interface CommentContentProps { content: string } export const CommentContent = ({ content }: CommentContentProps) => { const { text, isTextOverflowing, isExpanded, toggle } = useTextLimit(content) return ( <>

{text}

{isTextOverflowing && (

{isExpanded ? 'Hide' : 'View'} full post

)} ) }