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

14 lines
313 B
TypeScript

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