Enforce consistent React component naming conventions using domain + role patterns. Use when creating, reviewing, or refactoring components.
This skill helps you enforce consistent React component naming conventions across the codebase.
All React components use PascalCase:
// ✅ Good
export const TrendChart = () => {};
export const HeroPost = () => {};
// ❌ Bad
export const trendChart = () => {};
export const trend_chart = () => {};
Combine domain context with component role for clarity:
// ✅ Good - Clear domain and role
export const TrendChart = () => {}; // Trend (domain) + Chart (role)
export const HeroPost = () => {}; // Hero (domain) + Post (role)
export const MetricCard = () => {}; // Metric (domain) + Card (role)
export const LatestCoePremium = () => {}; // LatestCoe (domain) + Premium (role)
// ❌ Bad - Too generic or unclear
export const Chart = () => {}; // No domain context
export const Data = () => {}; // Meaningless
export const Item = () => {}; // No specificity
Use dot notation for related subcomponents:
// ✅ Good - Compound component pattern
export const HeroPost = () => {};
HeroPost.Image = () => {};
HeroPost.Title = () => {};
HeroPost.Meta = () => {};
// Usage
<HeroPost>
<HeroPost.Image src={...} />
<HeroPost.Title>...</HeroPost.Title>
<HeroPost.Meta date={...} />
</HeroPost>
// ❌ Bad - Flat naming for related components
export const HeroPostImage = () => {};
export const HeroPostTitle = () => {};
export const HeroPostMeta = () => {};
Never use these suffixes:
// ❌ Avoid these suffixes
export const MetricCardContainer = () => {}; // -Container
export const ChartWrapper = () => {}; // -Wrapper
export const DataComponent = () => {}; // -Component
export const ListElement = () => {}; // -Element
// ✅ Use clear domain + role instead
export const MetricCard = () => {};
export const TrendChart = () => {};
export const RegistrationList = () => {};
Names should describe purpose, not appearance:
// ❌ Bad - Describes layout/styling
export const LeftSidebar = () => {};
export const BigHeader = () => {};
export const RedButton = () => {};
export const TwoColumnLayout = () => {};
// ✅ Good - Describes purpose
export const NavigationSidebar = () => {};
export const PageHeader = () => {};
export const DangerButton = () => {};
export const ComparisonLayout = () => {};
Files use kebab-case matching the component name:
| Component | File Name |
|---|---|
TrendChart |
trend-chart.tsx |
HeroPost |
hero-post.tsx |
MetricCard |
metric-card.tsx |
LatestCoePremium |
latest-coe-premium.tsx |
When reviewing component names:
Good patterns found:
TrendAreaChart - Trends domain + Area Chart roleMarketShareDonut - Market Share domain + Donut roleTopMakesChart - Top Makes domain + Chart rolePremiumBanner - Premium domain + Banner roleMetricCard - Metric domain + Card roleLatestCoePremium - Latest COE domain + Premium roleAnti-patterns to avoid:
Chart, Card, List, DataLeftPanel, MainContent, TopSectionCardContainer, ListWrapper, ItemComponentapps/web/AGENTS.md - Web app component conventionsapps/web/src/components/ - Web app componentsapps/web/src/app/admin/components/ - Admin interface components