/** * WordPress dependencies */ import { SearchControl } from '@wordpress/components'; import { useDebounce } from '@wordpress/compose'; import { useState } from '@wordpress/element'; import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import { PageBody, PageContainer, PageHeader, PostsTable } from '../../components'; import './traffic-boost.scss'; /** * Traffic Boost page component. * * @since 3.19.0 */ export const TrafficBoostPage = (): React.JSX.Element => { const [ searchQuery, setSearchQuery ] = useState( '' ); const debouncedSetSearchQuery = useDebounce( ( value: string ) => { setSearchQuery( value ); setCurrentPage( 1 ); }, 300 ); const [ currentPage, setCurrentPage ] = useState( 1 ); return (

{ __( 'Manage Engagement Boost (beta)', 'wp-parsely' ) }

); };