/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Button } from '@wordpress/components'; import { EllipsisMenu } from '@woocommerce/components'; import { ONBOARDING_STORE_NAME } from '@woocommerce/data'; import { useDispatch } from '@wordpress/data'; export type TaskListMenuProps = { id: string; hideTaskListText?: string; }; export const TaskListMenu: React.FC< TaskListMenuProps > = ( { id, hideTaskListText, } ) => { const { hideTaskList } = useDispatch( ONBOARDING_STORE_NAME ); return (
(
) } />
); };