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