10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
|
|
import PaymentFailed from "@/components/pages/payment";
|
|
import { redirect } from "next/navigation";
|
|
import React from "react";
|
|
|
|
export default function Page() {
|
|
// return redirect('/home')
|
|
return <PaymentFailed />;
|
|
}
|