UNPKG

matrix-react-sdk

Version:
8 lines (7 loc) 222 B
import { PropsWithChildren } from "react"; interface Props { className?: string; flex?: boolean; } export default function AuthBody({ flex, className, children }: PropsWithChildren<Props>): JSX.Element; export {};