9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
import { Auth } from "./components/auth"
|
|
|
|
export function Page() {
|
|
return (
|
|
<div className="bg-background min-h-svh w-full">
|
|
<Auth />
|
|
</div>
|
|
)
|
|
} |