Add missing return on button
This commit is contained in:
@ -39,7 +39,9 @@ export default function Button({
|
||||
break;
|
||||
}
|
||||
|
||||
<button className={cl} {...props}>
|
||||
{children}
|
||||
</button>;
|
||||
return (
|
||||
<button className={cl} {...props}>
|
||||
{children}
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user