plane/space/helpers/actions.ts

6 lines
124 B
TypeScript
Raw Normal View History

2024-06-04 08:08:47 +00:00
"use server";
import { redirect } from "next/navigation";
export const navigate = async (path: string) => redirect(path);