react-typescript
星标11
分支1
更新时间2026年4月5日 15:06
React with TypeScript best practices
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
React with TypeScript best practices
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Biome JavaScript/TypeScript linter and formatter
Hono lightweight web framework on Cloudflare Workers
Cloudflare Workers edge computing platform
Laravel PHP framework best practices
MySQL database best practices and query patterns
Next.js with React 19 App Router patterns
| name | react-typescript |
| description | React with TypeScript best practices |
| model | inherit |
| triggers | [{"file_pattern":"*.tsx"}] |
Build type-safe React components with modern patterns.
React.FC or explicit function typeschildren?: React.ReactNode?readonly for propsinterface ButtonProps {
readonly variant: 'primary' | 'secondary';
readonly children: React.ReactNode;
readonly onClick?: () => void;
}
export const Button: React.FC<ButtonProps> = ({
variant,
children,
onClick
}) => {
return <button onClick={onClick}>{children}</button>;
};
/typescript - General TypeScript standards/nextjs - Next.js React patterns