mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 08:15:37 +00:00
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import {Link} from "react-router-dom";
|
|
|
|
export default function TestView() {
|
|
return (
|
|
<div className="size-full flex justify-center">
|
|
<Link to="/setup">Setup</Link>
|
|
</div>
|
|
);
|
|
} |