import * as React from 'react'; import { styled } from '@mui/material/styles'; const Link = styled('a')({ textOverflow: 'ellipsis', whiteSpace: 'nowrap', overflow: 'hidden', color: 'inherit', }); const DemoLink = React.memo(function DemoLink(props) { const handleClick = (event) => { event.preventDefault(); event.stopPropagation(); }; return ( {props.children} ); }); export function renderEmail(params) { const email = params.value ?? ''; return ( {email} ); } export default renderEmail;