Loading...
Loading...
Generates production-ready React components with TypeScript, Tailwind CSS, proper accessibility, and test scaffolding. Use when asked to create a new React component.
npx skill4agent add abhiunix/community-registry react-component-generatorinterface ${ComponentName}Props {
/** Description of each prop */
}
/** Brief description of what this component does */
export function ${ComponentName}({ ...props }: ${ComponentName}Props) {
return (
<div className="...">
{/* Implementation */}
</div>
);
}ComponentName.test.tsxfunctionclsxanyunknowndata-testid