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

{sprintf(__('%s'), theme_name)}

{__( `The most innovative, lightning fast and super charged WordPress theme` )}

) } export default Heading