/** * Internal dependencies */ import './section-header.scss'; type Props = { title: string; description: string; image: string; }; const SectionHeader: React.FC< Props > = ( { title, description, image } ) => { return (

{ title }

{ description }

{
); }; export default SectionHeader;