我正在尝试使用 react.js 获取一个链接到网站的按钮,但我似乎无法弄清楚如何让它工作。从下面的代码中,除了按钮(props.website)之外,一切都完美无缺。当我单击按钮时没有任何react。我究竟做错了什么?
function Card(props){
return(
<MDBCol>
<MDBCard style={{ width: "22rem" }}>
<MDBCardImage className="img-fluid" src={props.image} waves />
<MDBCardBody>
<MDBCardTitle>{props.name}</MDBCardTitle>
<MDBCardText>
{props.meaning}
</MDBCardText>
<MDBBtn href={props.website} >View Project</MDBBtn>
</MDBCardBody>
</MDBCard>
</MDBCol>
);
}