16 lines
331 B
TypeScript
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 />
|
|
);
|
|
}
|