component-naming

Installation
SKILL.md

Component Naming Conventions

Use this guide when creating or modifying React components to ensure consistent naming across the portfolio.


Naming Rules

1. PascalCase for Components

All React components use PascalCase:

// ✅ Good
export const FeaturedPost = () => {};
export const TagFilter = () => {};
Installs
1
GitHub Stars
9
First Seen
Jun 21, 2026
component-naming — ruchernchong/blog