import { PropsWithChildren } from 'react' import { classNames } from '@app/utils/classes' import { GrStatusGoodSmall } from 'react-icons/gr' type ViewConfigTitleProps = { title?: string className?: string } // determine layout for view one of all or selected website todo function StateLessViewConfigTitle({ title = '', children, className = '', }: PropsWithChildren) { return (
{title}
{children}
) } export { StateLessViewConfigTitle }