export interface MoreInformationDefaultRDPContentProps { textMoreRDPInfoContent?: string | React.ReactNode; } export const MoreInformationDefaultRDPContent: React.FunctionComponent = ({ textMoreRDPInfoContent = ( <>

Clicking "Launch Remote Desktop" will download an .rdp file and launch Remote Desktop Viewer.

Since the RDP is native Windows protocol, the best experience is achieved when used on Windows-based desktop.

For other operating systems, the Remote Viewer is recommended. If RDP needs to be accessed anyway, the{' '} Remmina client is available.

) }: MoreInformationDefaultRDPContentProps) => <>{textMoreRDPInfoContent}; MoreInformationDefaultRDPContent.displayName = 'MoreInformationDefaultRDPContent';