Init(Core): add to repo and add seeders
This commit is contained in:
5
resources/js/Components/Button.jsx
Normal file
5
resources/js/Components/Button.jsx
Normal file
@@ -0,0 +1,5 @@
|
||||
export default function Button({ onClick, children, className, disabled }) {
|
||||
return (
|
||||
<button disabled={ disabled } onClick={ onClick } className={"rounded-lg shadow-sm children-white p-2 active:outline active:animate-pulse " + className}>{children}</button>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user