Files
xingrin/frontend/app/settings/workers/page.tsx
2025-12-12 18:04:57 +08:00

20 lines
529 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client"
import { WorkerList } from "@/components/settings/workers"
export default function WorkersPage() {
return (
<div className="flex flex-1 flex-col gap-4 p-4">
<div className="flex items-center justify-between">
<div>
<h1 className="text-2xl font-bold tracking-tight"></h1>
<p className="text-muted-foreground">
VPS
</p>
</div>
</div>
<WorkerList />
</div>
)
}