13
resources/client/admin/titles/title-editor/title-comments-editor.tsx
Executable file
13
resources/client/admin/titles/title-editor/title-comments-editor.tsx
Executable file
@@ -0,0 +1,13 @@
|
||||
import {useOutletContext} from 'react-router-dom';
|
||||
import {Title} from '@app/titles/models/title';
|
||||
import {TitleEditorLayout} from '@app/admin/titles/title-editor/title-editor-layout';
|
||||
import {CommentsDatatablePage} from '@common/comments/comments-datatable-page/comments-datatable-page';
|
||||
|
||||
export function TitleCommentsEditor() {
|
||||
const title = useOutletContext<Title>();
|
||||
return (
|
||||
<TitleEditorLayout>
|
||||
<CommentsDatatablePage hideTitle commentable={title} />
|
||||
</TitleEditorLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user