grafana_bak/public/app/features/playlist/PlaylistStartPage.tsx
2025-04-01 10:38:02 +09:00

11 lines
284 B
TypeScript

import { useParams } from 'react-router-dom-v5-compat';
import { playlistSrv } from './PlaylistSrv';
// This is a react page that just redirects to new URLs
export default function PlaylistStartPage() {
const { uid = '' } = useParams();
playlistSrv.start(uid);
return null;
}