mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
import React from "react";
|
|
|
|
import ServerListClient from "@/app/(main)/ClientComponents/ServerListClient";
|
|
|
|
|
|
|
|
export default async function ServerList() {
|
|
return (
|
|
<ServerListClient />
|
|
);
|
|
}
|