14 lines
313 B
TypeScript
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>
|
|
);
|
|
}
|