1
0
forked from baron/baron-sso
Files
baron-sso/adminfront/src/features/roles/RoleCreatePage.tsx

35 lines
1.0 KiB
TypeScript

import { ChevronLeft } from "lucide-react";
import { Link } from "react-router-dom";
import { Button } from "../../components/ui/button";
function RoleCreatePage() {
return (
<div className="space-y-8">
<header className="space-y-2">
<Link
to="/roles"
className="flex items-center gap-1 text-sm text-[var(--color-muted)] hover:text-foreground"
>
<ChevronLeft size={14} />
Back to list
</Link>
<h2 className="text-3xl font-semibold"> </h2>
<p className="text-sm text-[var(--color-muted)]">
.
</p>
</header>
<div className="rounded-lg border border-dashed p-12 text-center">
<p className="text-[var(--color-muted)]">
.
</p>
<Button className="mt-4" disabled>
( )
</Button>
</div>
</div>
);
}
export default RoleCreatePage;