Files
docmost/client/src/components/aside/aside.tsx
Philipinho 4cb7a56f65 feat: comments
* create comment
* reply to comment thread
* edit comment
* delete comment
* resolve comment
2023-11-09 16:52:34 +00:00

12 lines
261 B
TypeScript

import React, { Suspense } from 'react';
const Comments = React.lazy(() => import('@/features/comment/comments'));
export default function Aside() {
return (
<Suspense fallback={<div>Loading comments...</div>}>
<Comments />
</Suspense>
);
}