type LinkProps = { url: string; format: any; }; const CustomLink: React.FC = ({ url, format }: LinkProps) => ( {format} ); export default CustomLink;