Files
pp-tcms/frontend/components/History.tsx
2026-01-12 23:27:34 +09:00

14 lines
311 B
TypeScript

'use client';
import { Alert } from '@heroui/react';
export default function History() {
return (
<div className="h-full text-default-500">
<div className="mb-4">
<Alert color="secondary" title="Sorry" description={'History function will be implemented'} />
</div>
</div>
);
}