//Modules import React from 'react'; //Style import "./Cta.css" class CTA extends React.Component { constructor(props) { super(props); this.state = { BTNText : this.props.BtnText, ContentText : this.props.ContentText, } } render() { return (

{this.props.title}

{this.props.BtnText}
) } } export default CTA;