mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 16:42:37 +10:00
* create comment * reply to comment thread * edit comment * delete comment * resolve comment
12 lines
261 B
TypeScript
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>
|
|
);
|
|
}
|