import Link, { LinkProps } from "next/link"; import { A, AType } from "react-with-native"; const ALink = ({ children, href, target, rel, linkProps, ...otherAProps }: { linkProps?: LinkProps } & AType) => { return ( {children} ); }; export default ALink;