import { useDisclosure } from 'hooks' import { Icons } from 'components' import { truncate } from 'utils' const Description = props => { //? Porps const { description } = props //? Assets const [isShowDesc, showDescHandlers] = useDisclosure() //? Render(s) return (

介绍

{isShowDesc ? description : truncate(description, 300)}

{description.length > 300 && ( )}
) } export default Description