mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-03 08:36:01 +00:00
7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
import { unstable_redirect as redirect } from "waku/router/server";
|
|
|
|
export default async function AdminIndex() {
|
|
await new Promise((resolve) => setTimeout(resolve, 100));
|
|
redirect("/admin/data");
|
|
}
|