import type { PropsWithChildren } from "react"; interface CoreSummaryContentProps extends PropsWithChildren {} const CoreSummaryContent = (props: CoreSummaryContentProps) => { return
{props.children}
; }; export default CoreSummaryContent;