UNPKG

@mikezimm/fps-library-v2

Version:

Library of reusable typescript/javascript functions, interfaces and constants

15 lines (14 loc) 864 B
/** * CodeAnalizerComment: Updated 2 imports on 2024-09-21 23:07:24 * Update:: import { IRepoLinks } to '@mikezimm/fps-core-v7/lib/components/atoms/Links/IRepoLinks;' * Update:: import { makeid } to '@mikezimm/fps-core-v7/lib/logic/Strings/guids;' */ import * as React from 'react'; import { convertIssuesMarkdownStringToSpan } from '../../../components/atoms/Elements/markdown'; import { makeid } from '@mikezimm/fps-core-v7/lib/logic/Strings/guids'; //./../../logic/Strings/guids'; export function createWhyRow(webpart, comments, repoLink) { let fullFocus = convertIssuesMarkdownStringToSpan(comments, repoLink); let tds = [React.createElement("span", { key: makeid(6), style: { whiteSpace: 'nowrap' } }, webpart), React.createElement("span", { key: makeid(6) }, fullFocus),]; return tds; } //# sourceMappingURL=createWhyRow.js.map