completed user admin page
This commit is contained in:
11
apps/hub/app/_components/Error.tsx
Normal file
11
apps/hub/app/_components/Error.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
"use client";
|
||||
|
||||
export const Error = ({
|
||||
statusCode,
|
||||
title,
|
||||
}: {
|
||||
statusCode: number;
|
||||
title: string;
|
||||
}) => {
|
||||
return <Error statusCode={404} title="User not found" />;
|
||||
};
|
||||
Reference in New Issue
Block a user