feat(create-turbo): apply official-starter transform

This commit is contained in:
Turbobot
2025-01-14 23:32:25 +01:00
committed by PxlLoewe
parent 17bafdfbd6
commit 2843c1c7f5
64 changed files with 5868 additions and 0 deletions

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>
);
};