Skip to content

Commit a6cca42

Browse files
committed
refactor: 위젯 분리
1 parent aa2cd2d commit a6cca42

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/pages/posts-manager-page.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)