import { createElement, Component, useEffect, useState, Fragment, } from '@wordpress/element' import { __ } from 'ct-i18n' import classnames from 'classnames' const SubmitSupport = () => { if (ctDashboardLocalizations.plugin_data.hide_support_section) { return null } return (

{__('Support', 'blocksy')}

{__( `Got a question or need some help with the theme? You can always submit a support ticket, and our team will help you out.`, 'blocksy' )}

{__(`Submit a Ticket`, 'blocksy')}
) } export default SubmitSupport