[menu] write menu component with hardcoded values

This commit is contained in:
nymkappa
2023-08-17 18:51:39 +02:00
parent 2c9e20dd87
commit 23b871631a
7 changed files with 170 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
import { IconName } from '@fortawesome/fontawesome-common-types';
export type MenuItem = {
title: string;
i18n: string;
faIcon: IconName;
link: string;
};
export type MenuGroup = {
title: string;
i18n: string;
items: MenuItem[];
}