Try with this code
render() {
console.log("Prop.runes.name: " + this.props.rune.name);
const label = this.props.rune.name.label;
console.log("Label: " + label);
...
}
You need to declare the variable label without the { }
The curly braces are for Destructuring
You can check here
depth destructuring