MSBD5017-Depin-WebClient/app/routes/home.tsx
2025-11-21 05:32:25 +08:00

16 lines
331 B
TypeScript

import ServerList from "~/Components/ServerList";
import type { Route } from "./+types/home";
export function meta({}: Route.MetaArgs) {
return [
{ title: "New React Router App" },
{ name: "description", content: "Welcome to React Router!" },
];
}
export default function Home() {
return(
<ServerList />
);
}