[menu] write menu component with hardcoded values
This commit is contained in:
13
frontend/src/app/interfaces/services.interface.ts
Normal file
13
frontend/src/app/interfaces/services.interface.ts
Normal 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[];
|
||||
}
|
||||
Reference in New Issue
Block a user