import { createElement, Component, useContext } from '@wordpress/element' import DashboardContext from './context' import { sprintf, __ } from 'ct-i18n' const Heading = () => { const { theme_name } = useContext(DashboardContext) return (

{theme_name}

{__( `The most innovative, lightning fast and super charged WordPress theme. Build visually your next web project in no minutes`, 'blocksy' )}

) } export default Heading