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