messiasads's picture
refactor to local use only
8185bfc
raw
history blame
288 Bytes
import { redirect } from "next/navigation";
import { MyProjects } from "@/components/my-projects";
export default async function ProjectsPage() {
const { ok, projects } = { ok: true, projects: [] };
if (!ok) {
redirect("/");
}
return <MyProjects projects={projects} />;
}