14 lines
291 B
TypeScript
14 lines
291 B
TypeScript
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>
|
|
);
|
|
}
|