TheBird

Doc.jsx

371 B · jsx · 11 lines

1export function Doc({ title, lead, body }) {2  return (3    <div className="wrap narrow">4      <article className="doc">5        <h1>{title}</h1>6        {lead ? <p className="lead" dangerouslySetInnerHTML={{ __html: lead }}></p> : null}7        {body ? <div className="prose" dangerouslySetInnerHTML={{ __html: body }}></div> : null}8      </article>9    </div>10  );11}