{
if (ref) {
this.preview = ref;
this.preview.style.display = 'none';
this.changeContent(this.content);
}
}} className='simulation' />
;
}
renderView() {
const { mode } = this.state;
return
{mode === 'introduction' ? this.renderIntroduction() : this.renderBase()}
{this.renderContent()}
;
}
}