mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-23 13:29:02 +08:00
refactor(infra): directory structure (#4615)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import clsx from 'clsx';
|
||||
import type { FC, HTMLAttributes, PropsWithChildren } from 'react';
|
||||
|
||||
import { authContent } from './share.css';
|
||||
|
||||
export const AuthContent: FC<
|
||||
PropsWithChildren & HTMLAttributes<HTMLDivElement>
|
||||
> = ({ children, className, ...otherProps }) => {
|
||||
return (
|
||||
<div className={clsx(authContent, className)} {...otherProps}>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user