import Child from "./child" class { onCreate() { this.state = { display: true }; } toggle() { this.state.display = !this.state.display; } }