import React from 'react' import { Typography } from '@mui/material' import ExternalLink from '../../components/ExternalLink' function RIDLink({ baseUrl, rid }: { rid: string; baseUrl: string }) { return ( RID {rid} ( see status ) ) } export default RIDLink