wip
This commit is contained in:
6
apps/website/app/leagues/[id]/scoring/page.tsx
Normal file
6
apps/website/app/leagues/[id]/scoring/page.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default async function ScoringPage({ params }: { params: Promise<{ id: string }> }) {
|
||||
const { id } = await params;
|
||||
redirect(`/leagues/${id}/rulebook`);
|
||||
}
|
||||
Reference in New Issue
Block a user