mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
10 lines
373 B
TypeScript
10 lines
373 B
TypeScript
/**
|
|
* Authentication and Authorization Components
|
|
*/
|
|
|
|
export { default as ProtectedRoute, type ProtectedRouteProps } from './ProtectedRoute';
|
|
export { AdminRoute, type AdminRouteProps } from './AdminRoute';
|
|
export { RequirePermission, type RequirePermissionProps } from './RequirePermission';
|
|
export { PermissionGate, type PermissionGateProps } from './PermissionGate';
|
|
|