Styling
This commit is contained in:
11
web/components/wanttobutton.js
Normal file
11
web/components/wanttobutton.js
Normal file
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user