Some checks failed
Automated Container Build / build-and-push (push) Failing after 7s
6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default async function ClassPage(props: PageProps<"/[classSlug]">) {
|
|
const { classSlug } = await props.params;
|
|
redirect(`/${classSlug}/flashcards`);
|
|
}
|