f0e2ef3b81
Signed-off-by: Phil Kuang <pkuang@factset.com>
533 B
533 B
@backstage/plugin-playlist
| @backstage/plugin-playlist |
|---|
| minor |
Support being able to define custom composable Playlist index pages
BREAKING The individual PlaylistPage route must now be manually hooked up by making the following change to your setup:
-import { PlaylistIndexPage } from '@backstage/plugin-playlist';
+import { PlaylistIndexPage, PlaylistPage } from '@backstage/plugin-playlist';
// ...
<Route path="/playlist" element={<PlaylistIndexPage />} />
+<Route path="/playlist/:playlistId" element={<PlaylistPage />} />