import React from 'react' export default function DocsSection({ id, eyebrow, title, summary, children, className = '' }) { return (
{eyebrow ?

{eyebrow}

: null}

{title}

{summary ?

{summary}

: null}
{children}
) }