From 65b90bc9acf0178602a5cf4853735ee8cacd624c Mon Sep 17 00:00:00 2001 From: pramod mahajan Date: Thu, 28 Aug 2025 11:17:54 +0530 Subject: [PATCH] initial setup document page --- src/pages/Documents/DocumentPage.jsx | 47 ++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/pages/Documents/DocumentPage.jsx diff --git a/src/pages/Documents/DocumentPage.jsx b/src/pages/Documents/DocumentPage.jsx new file mode 100644 index 00000000..f519bb5e --- /dev/null +++ b/src/pages/Documents/DocumentPage.jsx @@ -0,0 +1,47 @@ +import React from 'react' +import Breadcrumb from '../../components/common/Breadcrumb' + +const DocumentPage = () => { + return ( +
+ +
+
+ {/* Search */} +
+ +
+ + {/* Actions */} +
+ + Refresh + < i className={`bx bx-refresh ms-1 `}> + + + +
+
+
+ +
+ ) +} + +export default DocumentPage \ No newline at end of file