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