Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

OwlCarousel not working after build react js

{this.state.latest_stories.length && (
          <OwlCarousel className="owl-theme" loop margin={10} nav>
            {this.state.latest_stories.map((story, index) => {
              console.log(story); //this prints successfully everytime in loop

              return (
                <>
                  <div className="item">
                    <h4>{story}</h4>
                  </div>
                </>
              );
            })}
          </OwlCarousel>
        )}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #OwlCarousel #working #build #react #js
ADD COMMENT
Topic
Name
9+9 =