const title = props.title ?? "title"; const body = props.body ?? "body"; return ( <div> <h2>{title}</h2> <p>{body}</p> </div> );