We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa2cd2d commit a6cca42Copy full SHA for a6cca42
src/pages/posts-manager-page.tsx
@@ -0,0 +1,16 @@
1
+import { Card } from "@/shared/ui";
2
+import { PostsBodyWidget } from "@/widgets/posts-manager/ui/posts-body-widget";
3
+import { PostsDialogsWidget } from "@/widgets/posts-manager/ui/posts-dialogs-widget";
4
+import { PostsHeaderWidget } from "@/widgets/posts-manager/ui/posts-header-widget";
5
+
6
+const PostsManager = () => {
7
+ return (
8
+ <Card className="w-full max-w-6xl mx-auto">
9
+ <PostsHeaderWidget />
10
+ <PostsBodyWidget />
11
+ <PostsDialogsWidget />
12
+ </Card>
13
+ );
14
+};
15
16
+export default PostsManager;
0 commit comments