Files
natours-react/src/components/button/button.jsx
T
2021-04-30 11:00:09 +03:00

20 lines
328 B
React

import "./button.css";
function Button(props) {
const { text, animationName, link } = props;
return (
<a
href="#"
className={
animationName === "move-in-bottom"
? "btn btn-white move-in-bottom"
: "btn btn-white"
}
>
{text}
</a>
);
}
export default Button;