cara mengakses variabel dari render () ke luar render () di kelas reaksi komponen
// React
class Parent extends React.Component {
constructor(props) {
super(props);
this.name = props.name
}
render() {
return (
<h1>
{this.name}
</h1>
);
}
}
Calm Caracal