Files
claude-code-router/ui/src/components/ProtectedRoute.tsx
2025-07-30 21:33:58 +08:00

7 lines
249 B
TypeScript

const ProtectedRoute = ({ children }: { children: React.ReactNode }) => {
// For this application, we allow access without an API key
// The App component will handle loading and error states
return children;
};
export default ProtectedRoute;