import React, { FunctionComponent } from 'react'; import globalize from '../../../scripts/globalize'; const createLinkElement = ({ className, title, href }: { className?: string, title?: string, href?: string }) => ({ __html: ` ${title} ` }); type IProps = { title?: string; className?: string; url?: string } const SectionTitleLinkElement: FunctionComponent = ({ className, title, url }: IProps) => { return (
); }; export default SectionTitleLinkElement;