6ced8434bd
* Uniformize folder structure * Fix icons * Fix icons * Fix tests * Fix tests
6 lines
201 B
TypeScript
6 lines
201 B
TypeScript
import { RawLink } from '@/ui/link/components/RawLink';
|
|
|
|
export function FieldDisplayURL({ URL }: { URL: string | undefined }) {
|
|
return <RawLink href={URL ? 'https://' + URL : ''}>{URL}</RawLink>;
|
|
}
|