mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 02:13:33 +00:00
Add initial album detail page
This commit is contained in:
parent
b2f9c73300
commit
1d82c84c9e
4 changed files with 514 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ import {
|
|||
} from 'react-router-dom';
|
||||
import { AppRoute } from './routes';
|
||||
import { RouteErrorBoundary } from '/@/renderer/features/action-required';
|
||||
import AlbumDetailRoute from '/@/renderer/features/albums/routes/album-detail-route';
|
||||
import HomeRoute from '/@/renderer/features/home/routes/home-route';
|
||||
import { DefaultLayout } from '/@/renderer/layouts';
|
||||
import { AppOutlet } from '/@/renderer/router/app-outlet';
|
||||
|
|
@ -54,6 +55,10 @@ export const AppRouter = () => {
|
|||
element={<AlbumListRoute />}
|
||||
path={AppRoute.LIBRARY_ALBUMS}
|
||||
/>
|
||||
<Route
|
||||
element={<AlbumDetailRoute />}
|
||||
path={AppRoute.LIBRARY_ALBUMS_DETAIL}
|
||||
/>
|
||||
<Route
|
||||
element={<SongListRoute />}
|
||||
path={AppRoute.LIBRARY_SONGS}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue