30 lines
482 B
TypeScript
30 lines
482 B
TypeScript
|
export const SIDEBARTOP = [
|
||
|
{
|
||
|
text: "Dashboard",
|
||
|
icon: "wand-magic-sparkles",
|
||
|
default: true
|
||
|
},
|
||
|
{
|
||
|
text: "Files",
|
||
|
icon: "folder-tree"
|
||
|
},
|
||
|
{
|
||
|
text: "Webview Demo",
|
||
|
icon: "globe"
|
||
|
},
|
||
|
{
|
||
|
text: "Webview Demo 2",
|
||
|
icon: "globe"
|
||
|
},
|
||
|
{
|
||
|
text: "iFrame Demo",
|
||
|
icon: "eye"
|
||
|
},
|
||
|
]
|
||
|
|
||
|
export const SIDEBARBOTTOM = [
|
||
|
{
|
||
|
text: "Settings",
|
||
|
icon: "sliders"
|
||
|
}
|
||
|
]
|