this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add target as passable prop. Default '_blank'

BK610 96933b60 7bff7867

+2 -2
+2 -2
components/Button.js
··· 1 - export default function Button({ href, className }) { 1 + export default function Button({ href, target = "_blank", className }) { 2 2 return ( 3 - <a href={href} target="_blank"> 3 + <a href={href} target={target}> 4 4 <button 5 5 className={`px-4 py-2 font-bold 6 6 bg-gradient-to-r from-purple-200 to-orange-100 dark:from-purple-500 dark:to-orange-300