mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import type React from "react";
|
|
|
|
export function AuthContainer({ children }: { children?: React.ReactNode }) {
|
|
return (
|
|
<div className="auth-container">
|
|
<div className="auth-card fade-in">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
)
|
|
} |