mirror of
https://github.com/yusufipk/natours-react.git
synced 2026-09-11 11:06:10 +00:00
12 lines
162 B
React
12 lines
162 B
React
import "./button.css";
|
|
|
|
function Button(props) {
|
|
return (
|
|
<a href="#" className="btn btn-white">
|
|
{props.text}
|
|
</a>
|
|
);
|
|
}
|
|
|
|
export default Button;
|