mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 12:02:38 +10:00
feat: comments
* create comment * reply to comment thread * edit comment * delete comment * resolve comment
This commit is contained in:
11
client/src/components/aside/aside.tsx
Normal file
11
client/src/components/aside/aside.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user