initial commit

This commit is contained in:
2025-01-23 11:16:33 -05:00
commit 25cabeb8df
57 changed files with 11214 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import type { ParentComponent } from "solid-js";
export const Button: ParentComponent<{ onClick?: () => void }> = (props) => {
return (
<button class="button" type="button" onClick={props.onClick}>
{props.children}
</button>
);
};