import React from 'react'; export interface SkeletonTitleProps { show?: boolean } const SkeletonTitle = (props?: SkeletonTitleProps) => { const {show = true} = props; const cn = `max-w-sm animate-pulse${show ? '' : ' hidden'}`; return (
); } export default SkeletonTitle;