Loading...
Loading...
Build React components, responsive layouts, and handle state management. Use for UI development, styling, or frontend performance.
npx skill4agent add htlin222/dotfiles frontendinterface Props {
title: string;
onAction?: () => void;
}
export function Component({ title, onAction }: Props) {
return (
<div role="region" aria-label={title}>
<h2>{title}</h2>
<button onClick={onAction}>Action</button>
</div>
);
}