frontend-technologies
Installation
SKILL.md
Frontend Technologies Skill
Quick Start - React with TypeScript
import React, { useState, useEffect } from 'react';
interface Props {
title: string;
}
export function Example({ title }: Props) {
const [count, setCount] = useState(0);
useEffect(() => {
document.title = `${title}: ${count}`;
}, [count, title]);
return (
Related skills
More from pluginagentmarketplace/custom-plugin-typescript
career-development
Master career development, leadership, communication, and organizational skills. Use when planning career growth, preparing for leadership roles, or developing soft skills.
9security-practices
Master secure development, OWASP top 10, testing, and compliance. Use when building secure systems, conducting security reviews, or implementing best practices.
8ai-ml-technologies
Master AI, machine learning, LLMs, prompt engineering, and blockchain development. Use when building AI applications, working with LLMs, or developing smart contracts.
7tooling
TypeScript tooling, configuration, and build optimization
6advanced-types
Advanced TypeScript types including generics, conditionals, and mapped types
6fundamentals
TypeScript type system fundamentals and basic typing patterns
6