Files
meezi/web/dashboard/src/app/[locale]/page.tsx
T

11 lines
219 B
TypeScript
Raw Normal View History

import { redirect } from "@/i18n/routing";
export default async function HomePage({
params,
}: {
params: Promise<{ locale: string }>;
}) {
const { locale } = await params;
redirect({ href: "/pos", locale });
}