const Chapter = ({ number, title, children }) => (
<>
<BreakPage />
<H1>Chapter {number}: {title}</H1>
{children}
</>
);
<Document>
<Section>
<H1>Introduction</H1>
<Paragraph>...</Paragraph>
<Chapter number={1} title="Getting Started">
<Paragraph>...</Paragraph>
</Chapter>
<Chapter number={2} title="Advanced Topics">
<Paragraph>...</Paragraph>
</Chapter>
</Section>
</Document>