import React, { FunctionComponent } from "react"; export const CustomEmoji: FunctionComponent<{ name: string; url: string; }> = React.memo(({ name = "missing", url = "" }) => { return ( {`:${name}:`} ); }); CustomEmoji.displayName = "CustomEmoji";