Мне нужно вернуть const в функции.это мой код:
ValidarSections(){
if(global.titulo === "Telefonia - Implementaciones"){
return SECTIONS = [
{
title: "Milestone",
content: this.state.Milestone
}
]
}
if(global.titulo === "Telefonia - Integraciones"){
return SECTIONS = [
{
title: "Relevamiento",
content: this.state.RelevamientoINT
},
{
title: "Instalaciones",
content: this.state.Instalaciones
},
{
title: "Integraciones",
content: this.state.Integracion
}
]
}
if(global.titulo === "Obras Civiles"){
return SECTIONS = [
{
title: "Obra",
content: this.state.Obra
},
{
title: "Relevamiento",
content: this.state.RelevamientoOBR
}
]
}
}
render() {
const SECTIONS = this.ValidarSections()
....
}
, чтобы можно было использовать этот констант в библиотеке Accordion.Я новичок, чтобы реагировать на родную, как я могу это сделать?