1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #4777 from thornbill/migrate-quick-connect

Migrate quick connect page to react
This commit is contained in:
Bill Thornton 2023-09-18 23:41:02 -04:00 committed by GitHub
commit f14a61c8c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 214 additions and 89 deletions

View file

@ -0,0 +1,17 @@
import React from 'react';
import { Navigate, Route } from 'react-router-dom';
export interface Redirect {
from: string
to: string
}
export function toRedirectRoute({ from, to }: Redirect) {
return (
<Route
key={from}
path={from}
element={<Navigate replace to={to} />}
/>
);
}