/** * Internal dependencies */ import './style.scss'; type TasksPlaceholderProps = { numTasks?: number; query: { task?: string; }; }; const SectionedTaskListPlaceholder: React.FC< TasksPlaceholderProps > = ( props ) => { const { numTasks = 3 } = props; return (
); }; export { SectionedTaskListPlaceholder };