export function Doc({ title, lead, body }) { return (

{title}

{lead ?

: null} {body ?
: null}
); }