mirror of
https://github.com/yusufipk/natours-react.git
synced 2026-09-11 11:06:10 +00:00
11 lines
175 B
React
11 lines
175 B
React
function ButtonMain(props) {
|
|
const { text, link, feature } = props;
|
|
return (
|
|
<a href="#" className={feature}>
|
|
{text}
|
|
</a>
|
|
);
|
|
}
|
|
|
|
export default ButtonMain;
|