unreal-chat/packages/ui/turbo/generators/templates/component.hbs
Jusemon a3700a0068 chore: update project dependencies and configuration
- Migrated ESLint configuration from Next.js to SolidJS
- Removed React-specific ESLint plugins
- Updated Turbo configuration with global dependencies
- Simplified Prisma scripts in API package
- Added shared ESLint and TypeScript configs to web and API packages
- Cleaned up unnecessary dependencies and configurations
2025-03-06 18:59:11 -05:00

8 lines
188 B
Handlebars

export const {{ pascalCase name }} = ({ children }: { children: JSX.Element }) => {
return (
<div>
<h1>{{ pascalCase name }} Component</h1>
{children}
</div>
);
};