import ALink from "./ALink"; const CodeLink = ({ pageKey }: { pageKey: string }) => { const href = getCodeLocation(pageKey); return ( Check the code ); }; export const getCodeLocation = (pageKey: string) => { return `https://github.com/Code-From-Anywhere/react-with-native/blob/main/packages/ui/src/pages/${pageKey}.tsx`; }; export default CodeLink;