6 lines
224 B
TypeScript
6 lines
224 B
TypeScript
import { NotFoundPage } from '@/app/ui/NotFoundPage';
|
|
|
|
const AttachmentNotFound = () =>
|
|
<NotFoundPage title="404 File Not Found" description="Could not find the requested attachment." />;
|
|
|
|
export default AttachmentNotFound; |