import React, {Component, useState} from 'react'; class Faqs extends Component { constructor(props){ super(props) } render() { const data = this.props.faqData return(
{/* PRELOADER SPINNER */}
{/* PAGE CONTENT */}
{/* HEADER */} {/* FAQs-2 */}
{/* SECTION TITLE */}
{/* Title */}

Got Questions? Look Here

{/* Text */}

Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit and cursus varius magna tempus a dolor

{/* FAQs-2 QUESTIONS */}
{/* QUESTIONS HOLDER */}
{data.map((item, idx) => { let delay = 0.2 if(idx % 2 === 0){ delay *= Math.floor(idx / 2); // multiply delay by 2 for every odd idx return (
{/* Question */}
{item.title}
{/* Answer */}

{item.text}

) } })}
{/* END QUESTIONS HOLDER */} {/* QUESTIONS HOLDER */}
{data.map((item, idx) => { let delay = 0.2 if(idx % 2 === 1){ delay *= Math.floor(idx / 2); // multiply delay by 2 for every even idx return (
{/* Question */}
{item.title}
{/* Answer */}

{item.text}

) } })}
{/* END QUESTIONS HOLDER */}
{/* End row */}
{/* END FAQs-2 QUESTIONS */} {/* MORE QUESTIONS BUTTON */}
Have more questions? Ask your question here
{/* End container */} {/* GEOMETRIC OVERLAY */}
{/* END FAQs-2 */} {/* DOWNLOAD-2 */}
{/* DOWNLOAD TEXT */}
{/* Icon */}
{/* app-logo */} app-logo
{/* Title */}

Download Float to create your beautiful landing page

{/* STORE BADGES */}
{/* AppStore */} appstore-logo {/* Google Play */} googleplay-logo
{/* END STORE BADGES */}
{/* End row */}
{/* End container */}
{/* END DOWNLOAD-2 */}
{/* END PAGE CONTENT */}
) } } export default Faqs