import { redirect, notFound } from "next/navigation";

export default function Page({ params }: { params: { app: string } }) {
  const app = params.app;
  if (app !== "client" && app !== "property") {
    notFound();
  }
  redirect(`/${app}/users`);
}
