Initial commit from create-turbo

This commit is contained in:
wass08
2026-01-14 07:26:59 +09:00
commit d5f4648c39
61 changed files with 2356 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
"use client";
import { ReactNode } from "react";
interface ButtonProps {
children: ReactNode;
className?: string;
appName: string;
}
export const Button = ({ children, className, appName }: ButtonProps) => {
return (
<button
className={className}
onClick={() => alert(`Hello from your ${appName} app!`)}
>
{children}
</button>
);
};