plane/space/helpers/actions.ts
2024-06-04 13:38:47 +05:30

6 lines
124 B
TypeScript

"use server";
import { redirect } from "next/navigation";
export const navigate = async (path: string) => redirect(path);