import { A } from "react-with-native"; import type { ALinkType } from "./ALink.type"; const ALink = ({ children, href, target, rel, linkProps, ...otherAProps }: ALinkType) => { return ( {children} ); }; export default ALink;