import * as React from 'react' import dynamicReact from '@markdoc/markdoc/dist/react' import { Link } from '@redocly/theme/components/Link/Link' export interface XRPLCardProps { title: string href: string body?: string image?: string imageAlt?: string external: boolean } export function XRPLCard(props: XRPLCardProps) { return (
{props.body}
}