nezha_dash/components/ServerList.tsx
2024-07-27 02:17:07 +08:00

12 lines
198 B
TypeScript

import React from "react";
import ServerListClient from "@/app/(main)/ClientComponents/ServerListClient";
export default async function ServerList() {
return (
<ServerListClient />
);
}