1type Props = {
2 type: "link" | "button";
3 href?: string;
4 onClick?: () => void;
5};
6
7const SmartButton = ({ type, href, onClick }: Props) => {
8 if (type === "link") {
9 return <a href={href}>Link</a>;
10 }
11 return <button onClick={onClick}>Button</button>;
12};