import { PropsWithChildren } from 'react'; import { Block, type BlockProps, type BlockTagType } from 'react-login-page'; export const Welcome = (props: PropsWithChildren>>) => { const { keyname = 'welcome', tagName = 'section', ...elmProps } = props; if (!elmProps.children) { elmProps.children = 'Welcome back! Log in to your account.'; } return ; };