/** * External dependencies */ import classnames from 'classnames'; /** * Internal dependencies */ type TasksPlaceholderProps = { numTasks?: number; twoColumns?: boolean; query: { task?: string; }; }; export const TaskListPlaceholder: React.FC< TasksPlaceholderProps > = ( props ) => { const { numTasks = 5 } = props; return (
); }; export default TaskListPlaceholder;