mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
30 lines
615 B
JavaScript
Executable File
30 lines
615 B
JavaScript
Executable File
import LibraryTab from "./library"
|
|
import FavoritesTab from "./favorites"
|
|
import ExploreTab from "./explore"
|
|
|
|
export default [
|
|
{
|
|
key: "explore",
|
|
label: "Explore",
|
|
icon: "FiCompass",
|
|
component: ExploreTab
|
|
},
|
|
{
|
|
key: "library",
|
|
label: "Library",
|
|
icon: "MdLibraryMusic",
|
|
component: LibraryTab,
|
|
},
|
|
{
|
|
key: "favorites",
|
|
label: "Favorites",
|
|
icon: "MdFavoriteBorder",
|
|
component: FavoritesTab,
|
|
},
|
|
{
|
|
key: "radio",
|
|
label: "Radio",
|
|
icon: "FiRadio",
|
|
disabled: true
|
|
},
|
|
] |