+ 해당 글을 삭제할까요?
+
+ {'삭제한 글은 복구할 수 없어요!\n삭제하시겠어요'}
+
+
+
+
+
+
+ );
+};
+
+export default DeleteArticle;
diff --git a/src/components/Modal/index.tsx b/src/components/Modal/index.tsx
new file mode 100644
index 00000000..8a9180bd
--- /dev/null
+++ b/src/components/Modal/index.tsx
@@ -0,0 +1,13 @@
+import { useModalStore } from '@/src/stores/modalStore';
+
+import DeleteArticle from './components/DeleteArticle';
+
+const Modal = () => {
+ const { type } = useModalStore();
+
+ if (type === 'deleteArticle') return