mirror of
https://github.com/musistudio/claude-code-router.git
synced 2026-02-02 23:00:50 +08: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; |