feat(guide): add github links for pages (#8725)

This commit is contained in:
Suneet Tipirneni
2022-10-08 18:58:28 -04:00
committed by GitHub
parent 1ea7664aa3
commit 1b4f69b00a
5 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
import { GITHUB_BASE_PAGES_PATH } from './constants.js';
export function generateGithubURL(pageURL: string) {
return `${GITHUB_BASE_PAGES_PATH}${pageURL}.mdx`;
}