danmu-sim/components/admin-button.tsx

14 lines
291 B
TypeScript
Raw Permalink Normal View History

2024-04-06 17:11:27 +08:00
import Link from "next/link";
export function AdminButton({ className }: { className?: string | undefined }) {
return (
<Link
className={className}
target="_blank"
href="https://tachy.daoyoucloud.com/apps/danmu-sim/admin"
>
</Link>
);
}