- 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
8 lines
188 B
Handlebars
8 lines
188 B
Handlebars
export const {{ pascalCase name }} = ({ children }: { children: JSX.Element }) => {
|
|
return (
|
|
<div>
|
|
<h1>{{ pascalCase name }} Component</h1>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|