tomodachi-share/frontend/src/pages/index.tsx
2026-04-17 19:51:17 +01:00

16 lines
520 B
TypeScript

import { useSearchParams } from "react-router";
import MiiList from "../components/mii/list";
export default function IndexPage() {
const [searchParams] = useSearchParams();
return (
<>
<h1 className="sr-only">
{searchParams.get("tags") ? `Miis tagged with '${searchParams.get("tags")}' - TomodachiShare` : "TomodachiShare - index mii list"}
</h1>
<p className="text-center mb-4">We're currently going through some major code changes therefore some features won't work.</p>
<MiiList />
</>
);
}