UNPKG

@mikezimm/fps-library-v2

Version:

Library of reusable typescript/javascript functions, interfaces and constants

25 lines 1.06 kB
// import * as React from 'react'; // import { createLink } from './CreateLinks'; // /** // * Blogs // */ // export const blogSPTimeZone = createLink( 'https://sharepointmaven.com/sharepoint-time-zone/','_blank', 'Set your SharePoint Time-Zone' ); /** * This is a duplicate found in CreateLinks.... from now on, use that one instead * @param href * @param target * @param linkDesc * @returns */ // export function createRepoLinks(href: string, target: string, linkDesc: string){ // return { // repo: createLink( href, target, linkDesc + ' on Github' ), // issues: createLink( href + '/issues', target, linkDesc + "" ), // Removed ' Issues' add on because I always link directly to the Issues in the banner panel // wiki: createLink( href + '/wiki', target, linkDesc + " Wiki" ), // projects: createLink( href + '/projects', target, linkDesc + " Projects" ), // href: href, // target: target, // desc: linkDesc, // }; // } //# sourceMappingURL=AllLinks.js.map