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;