import { Fragment, PropsWithChildren } from 'react'; import { Block, type BlockProps, type BlockTagType } from 'react-login-page'; export const Title = (props: PropsWithChildren>>) => { const { keyname, name = 'title', tagName = 'h1', ...elmProps } = props; if (!elmProps.children) { elmProps.children = ( We are Login ); } return ; }; Title.displayName = 'Login.Title';