Files
var-monorepo/apps/hub/app/_components/Error.tsx
2025-03-15 11:09:55 -07:00

12 lines
172 B
TypeScript

"use client";
export const Error = ({
statusCode,
title,
}: {
statusCode: number;
title: string;
}) => {
return <Error statusCode={404} title="User not found" />;
};