added short circuit evaluation

This commit is contained in:
Foster Irwin 2022-02-06 08:47:40 -07:00
parent 59854dfe77
commit 8f2f796052

View file

@ -7,7 +7,7 @@ export const HeaderText = ({type, text, link}): JSX.Element => {
return (
<Header className="anchor anchorWithHideOnScrollNavbar_node_modules-@docusaurus-theme-classic-lib-next-theme-Heading-styles-module">
{text}
{link ? <a className="hash-link" href={`#${link}`} title="Direct link to heading"/> : null}
{link && <a className="hash-link" href={`#${link}`} title="Direct link to heading"/>}
</Header>
);