diff --git a/components/Button.tsx b/components/Button.tsx index 419402f..1eb31f8 100644 --- a/components/Button.tsx +++ b/components/Button.tsx @@ -2,12 +2,12 @@ import Link from 'next/link' const Button = ({ type='button', className, children, href, onClick }: ButtonProps):JSX.Element => { return href ? - + { children } - : onClick ? : : }