const { title, description } = this.state
<NewsComponent
title,
description
/>description, только в том случае, если он есть, т.е не undefined?NewsComponent уже делать проверку на то, что существует, а что нет? const { ...rest } = this.state
<NewsComponent
{ ...rest }
/>const { title, description = "" } = this.state
<NewsComponent
title,
description
/>