interface ExportPreviewProps { content: Record | null } export function ExportPreview({ content }: ExportPreviewProps): JSX.Element { return (

Export Preview

JSON and GeoJSON content preview for the selected export artifact.

preview
{content ? (
{JSON.stringify(content, null, 2)}
) : (
No export preview selected.

Use Preview JSON content on a JSON or GeoJSON artifact to inspect the stored payload here.

)}
) }