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,8 @@
export const {{ pascalCase name }} = ({ children }: { children: React.ReactNode }) => {
return (
<div>
<h1>{{ pascalCase name }} Component</h1>
{children}
</div>
);
};