9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
type Params = { locale: string };
|
|
|
|
export default async function AdminIndexPage({ params }: { params: Promise<Params> }) {
|
|
const { locale } = await params;
|
|
redirect(`/${locale}/admin/users`);
|
|
}
|