mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
10 lines
244 B
JavaScript
10 lines
244 B
JavaScript
import React from "react";
|
|
import Link from "@docusaurus/Link";
|
|
import { getLinkRel } from "@site/src/utils/link-rel";
|
|
|
|
export default function MDXA(props) {
|
|
const rel = getLinkRel(props?.href);
|
|
|
|
return <Link {...props} rel={rel} />;
|
|
}
|