skip to Main Content

Reactjs – Cant send backgroundImage in props

I have a problem to pass the backgroundImage this is my code: Home.js import React from 'react'; import './Home.css'; import AlarmCardInvertida from '../components/AlarmCardInvertida'; function Home() { const alarmCardInvertidaData = [ { background: '../../images/banners/casa01.jpg', }, ]; return ( <> <h2 className='alarm-cards-title'>Funcionalidades…

VIEW QUESTION

Javascript – Passing array as prop to component

I have a component that I am trying with various props that I want to pass. One of which being an array (tags): <RandomItem propOne="alphabet" propTwo="numbers" propThree="months" propFour="days" propFive="weeks" tags={["alpha", "bravo", "charlie"]} /> the structure for the RandomItem component is…

VIEW QUESTION
Back To Top
Search