/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; const { Fragment } = wp.element; const { withFilters } = wp.components; export const HelpTab = () => { return (

{ __( 'Welcome to Kadence!', 'kadence' ) }

{ __( 'You are going to love working with this theme! View the video below to get started with our video tutorials or click the view knowledge base button below to see all the documentation.', 'kadence' ) }

{
{ __( 'Video Tutorials', 'kadence' ) }{ __( 'View Knowledge Base', 'kadence' ) }
); }; export default withFilters( 'kadence_theme_help' )( HelpTab );