const Section = ({ title, desc, children }: { title: string; desc?: string; children: React.ReactNode }) => (

{title}

{desc &&

{desc}

}
{children}
); const Spacing = () => (

Spacing (4px grid)

{[4, 6, 8, 12, 16, 20].map((s) => (
{s}px
))}
); export default Spacing;