I would like to know the difference between:
const data = this.props.content;
And
const {data} = this.props.content;
I saw it before but declaring 3 or 4 variables all together. However I've never seen it with just 1 variable.
What's the difference?