From de19cc5de2954a8c502fe096bd538942518879a1 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Tue, 23 Dec 2025 12:07:14 +0700 Subject: [PATCH] feat(FE-331): create PermissionNotFound component --- src/components/helper/PermissionNotFound.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/components/helper/PermissionNotFound.tsx diff --git a/src/components/helper/PermissionNotFound.tsx b/src/components/helper/PermissionNotFound.tsx new file mode 100644 index 00000000..75e48c62 --- /dev/null +++ b/src/components/helper/PermissionNotFound.tsx @@ -0,0 +1,12 @@ +const PermissionNotFound = () => { + return ( +
+

Permission Not Found

+

+ You do not have permission to access this page. +

+
+ ); +}; + +export default PermissionNotFound;