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