6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
import { RawLink } from '@/ui/components/links/RawLink';
|
|
|
|
export function FieldDisplayURL({ URL }: { URL: string | undefined }) {
|
|
return <RawLink href={URL ? 'https://' + URL : ''}>{URL}</RawLink>;
|
|
}
|