Add internet radio (#1384)

This commit is contained in:
Jeff
2025-12-13 21:26:33 -08:00
committed by GitHub
parent f61d34c340
commit 7ed847fecb
46 changed files with 2229 additions and 118 deletions
+3
View File
@@ -71,6 +71,8 @@ const GenreDetailRoute = lazy(
const FolderListRoute = lazy(() => import('/@/renderer/features/folders/routes/folder-list-route'));
const RadioListRoute = lazy(() => import('/@/renderer/features/radio/routes/radio-list-route'));
const SearchRoute = lazy(() => import('/@/renderer/features/search/routes/search-route'));
const FavoritesRoute = lazy(() => import('/@/renderer/features/favorites/routes/favorites-route'));
@@ -154,6 +156,7 @@ export const AppRouter = () => {
element={<PlaylistListRoute />}
path={AppRoute.PLAYLISTS}
/>
<Route element={<RadioListRoute />} path={AppRoute.RADIO} />
<Route
element={<PlaylistDetailSongListRoute />}
path={AppRoute.PLAYLISTS_DETAIL_SONGS}