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