searchpage implementation

This commit is contained in:
frits000000
2020-11-20 17:00:01 +01:00
parent 6c1247657d
commit 0481ad2bc5
6 changed files with 39 additions and 5 deletions
@@ -7,14 +7,21 @@ import "./Cta.css"
class CTA extends React.Component {
constructor(props) {
super(props);
this.state = {
BTNText : this.props.BtnText,
ContentText : this.props.ContentText,
}
}
render() {
return (
<div className="Cta mt-5">
<div className="container">
<h1 className="mb-5">{this.props.title}</h1>
<a className="AP-Btn-outline">{this.props.BtnText}</a>
</div>
</div>
)