import React from 'react'; interface PlaceholderProps { canExpand?: boolean; } const Placeholder: React.FC = ({ canExpand = false }) => { return (
); }; export default Placeholder;