Skip to content

Commit 62fbefd

Browse files
add tools links
1 parent 76ffd99 commit 62fbefd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/features/common/components/context-menu/context-menu.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import jwtLogoString from "@/public/img/jwt-logo.svg?raw";
77
import jwtSymbolString from "@/public/img/jwt-symbol.svg?raw";
88
import jwtWordmarkString from "@/public/img/jwt-wordmark.svg?raw";
99
import { Button } from "react-aria-components";
10+
import { a } from "vitest/dist/suite-dWqIFb_-.js";
1011

1112
interface ContextMenuProps {
1213
dictionary: BrandDictionaryModel;
@@ -87,6 +88,10 @@ const ContextMenu: FC<ContextMenuProps> = ({
8788
{dictionary.menu.brand.wordmark.downloadLabel}
8889
</a>
8990
</div>
91+
<div className={styles.groupLabel}>{dictionary.menu.tools.label}</div>
92+
{dictionary.menu.tools.items.map((el) => (
93+
<a className={styles.menuItem} key={el.url} href={el.url}>{el.label}</a>
94+
))}
9095
</div>
9196
);
9297
};

0 commit comments

Comments
 (0)