import { __ } from '@wordpress/i18n'; export const TourButton = ({ task, completed }) => { const startTour = (slug) => window.dispatchEvent( new CustomEvent('extendify-assist:start-tour', { detail: { tourSlug: slug }, }), ); return (
{__( 'This tour is only available on desktop devices', 'extendify-local', )}
); };