UNPKG

9s-fe-core

Version:

Core functionalities for authentication, configuration, and repository management.

8 lines (7 loc) 211 B
import React from 'react'; interface ProtectedRouteProps { children: React.ReactNode; redirectPath?: string; } declare const ProtectedRoute: React.FC<ProtectedRouteProps>; export default ProtectedRoute;