mirror of
https://github.com/musistudio/claude-code-router.git
synced 2026-01-29 22:02:05 +00:00
7 lines
210 B
TypeScript
7 lines
210 B
TypeScript
const PublicRoute = ({ children }: { children: React.ReactNode }) => {
|
|
// Always show login page
|
|
// The login page will handle empty API keys appropriately
|
|
return children;
|
|
};
|
|
|
|
export default PublicRoute; |