Files
AFFiNE/packages/frontend/component/src/components/auth-components/auth-container.tsx
forehalo 9dcce43360 refactor(core): auth ui (#10101)
close AF-2202 AF-2203
2025-02-12 07:39:09 +00:00

8 lines
219 B
TypeScript

import type { PropsWithChildren } from 'react';
import { authContainer } from './share.css';
export function AuthContainer(props: PropsWithChildren) {
return <div className={authContainer}>{props.children}</div>;
}