18 lines
440 B
TypeScript
18 lines
440 B
TypeScript
/**
|
|
* AuthContainer - UI component for auth page layouts
|
|
*
|
|
* Pure presentation component for auth page container.
|
|
* Used by auth layout to provide consistent styling.
|
|
*/
|
|
|
|
interface AuthContainerProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export function AuthContainer({ children }: AuthContainerProps) {
|
|
return (
|
|
<div className="min-h-screen bg-deep-graphite flex items-center justify-center p-4">
|
|
{children}
|
|
</div>
|
|
);
|
|
} |