import React, { ReactNode } from 'react'; type Props = { title: string; children?: ReactNode; }; const CardBoxComponentTitle = ({ title, children }: Props) => { return (

{title}

{children}
); }; export default CardBoxComponentTitle;