Files
forgetmenot-nextjs/web/components/wanttobutton.js
Ben Ramey 7a798c1bcd Styling
2022-08-27 16:58:01 -05:00

12 lines
235 B
JavaScript

import Link from "next/link";
function WantToButton({ href, text }) {
return (
<Link href={href}>
<a className="py-1 px-2 mr-1 rounded border text-xl">{text}</a>
</Link>
);
}
export default WantToButton;