interface PlaceholderProps { canExpand?: boolean; } const Placeholder = ({ canExpand = false }: PlaceholderProps) => { return (
); }; export default Placeholder;