function ChapterSplitColumn({ blog, table }: { blog: React.ReactNode; table: React.ReactNode }) { return (
{blog}
{table}
); } export { ChapterSplitColumn };