287affa34a
Exclude test and spec files from generated barrels so page imports do not load test modules at runtime.
8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
"use client";
|
|
|
|
import { AuthScreen } from "@/app/auth/auth-screen";
|
|
|
|
export default function AuthPage() {
|
|
return <AuthScreen />;
|
|
}
|