skip to Main Content

document.getElementById() can't find any matches on page – Html

i have this html code: import { currentSlide } from './Carusel'; <div className='app__mainpage'> <div className='app__mainpage_banners'> <img id='app__banners-banner' src={images.banner_first} alt='Банер' /> <img id='app__banners-banner' src={images.banner_two} alt='Банер' /> <img id='app__banners-banner' src={images.banner_three} alt='Банер' /> </div> <div className='app__mainpage_cigarettes'> <svg className='app__cigarettes-arrow active' fill='#6C6C6C' onClick={currentSlide(1)} ... BLA-BLA-BLA…

VIEW QUESTION

how to manipulate array response – Reactjs

i have an array below const sampleResponse = [ { benefitTypeCode: 'HE', benefitTypeValue: 'HEALTH', }, { benefitTypeCode: 'DE', benefitTypeValue: 'DEATH', }, ]; how to manipulate array string into our desire string my goals const sampleResponse = [ { benefitTypeCode: 'HE',…

VIEW QUESTION
Back To Top
Search