feat(produser): added in the function to create a standard user based on there username
This commit is contained in:
14
frontend/src/routes/_admin/prodUsers.tsx
Normal file
14
frontend/src/routes/_admin/prodUsers.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import ProdUserCard from "@/components/admin/prodUser/ProdUserCard";
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
|
||||
export const Route = createFileRoute("/_admin/prodUsers")({
|
||||
component: RouteComponent,
|
||||
});
|
||||
|
||||
function RouteComponent() {
|
||||
return (
|
||||
<div>
|
||||
<ProdUserCard />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user