Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@setoelkahfi
/
tower-of-bazel
tower-of-bazel
/
frontend
/
desktop
/
app
/
_lib
/
menus.ts
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
feature/share-libs
main
ts
20 lines
284 Bytes
Copy permalink
Copy
Raw
1
export
type
Item
=
{
2
name
:
string
;
3
slug
:
string
;
4
description
?:
string
;
5
};
6
7
export
const
menus
:
{
items
:
Item
[]
}[]
=
[
8
{
9
items
:
[
10
{
11
name
:
'
Play
'
,
12
slug
:
'
play
'
,
13
},
14
{
15
name
:
'
Chat 🤖
'
,
16
slug
:
'
chat
'
,
17
},
18
],
19
},
20
];