@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
39 lines • 1.95 kB
JavaScript
import * as React from 'react';
import { RegexSiteInfo } from '../Highlights/HighlightRegArrays';
/**
* For use in Categories component.
* 2024-07-29: Migrated from HubCon Categories component into separate reusable sample function
*
* @param tab1
* @param tab2
* @returns
*/
export function categoriesHeadingHubCon(tab1, tab2) {
const CategoriesHeadingHubCon = React.createElement("div", null,
React.createElement("p", null, "If you are wondering why your site is not showing up under our category buttons, then you came to the right place! This page explains all the categories and what goes into them. It is a little technical to explain..."),
React.createElement("div", { className: 'secHeading' }, "Simple answer:"),
RegexSiteInfo,
React.createElement("div", null,
"For example, if your site has ",
React.createElement("b", { style: { color: 'blue' } }, "ANA"),
", it should show up when clicking on the ",
React.createElement("b", null, "AAM"),
" button."),
React.createElement("div", { className: 'secHeading' }, "How to use this page:"),
React.createElement("div", null,
"Start on the ",
React.createElement("b", null, tab1),
" or ",
React.createElement("b", null, tab2),
" tab."),
React.createElement("div", null,
React.createElement("b", null, "Alt-Click"),
" on the Site or Subsite you want to check."),
React.createElement("div", null,
"You will be taken back to this page and any of the ",
React.createElement("b", null, "rules that apply"),
" to that site will be ",
React.createElement("b", { style: { color: 'green' } }, "highlighted in green")));
return CategoriesHeadingHubCon;
}
//# sourceMappingURL=HubCon.js.map