- Published on
Name your React Components: Conventions
- Authors
- Name
- Smail Oubaalla
- @smaiil_dev

Have you ever struggled to understand someone else’s React Components due to confusing or inconsistent naming conventions?
When developing a large React project with hundreds or even thousands of components, clear and consistent naming conventions become essential for readability, maintainability, and teamwork.
In this blog post, we’ll explore the importance of naming conventions for React Components and provide specific examples of how they can impact development. We’ll also discuss some of the most common naming conventions used in React, and provide best practices for choosing appropriate names for your components. By the end of this post, you’ll have a better understanding of how to name your React Components for maximum efficiency and effectiveness.
Naming Conventions: A set of rules and guidelines used to standardize the naming of variables. functions, and other programming constructs. It helps make the code more readable, maintainable, and reusable.
Naming Conventions: A set of rules and guidelines used to standardize the naming of variables. functions, and other programming constructs. It helps make the code more readable, maintainable, and reusable.
1. PascalCase for React Components
PascalCase is a naming convention where each word in a compound word is capitalized, in this example, FirstName and LastName are both capitalized using PascalCase. This makes it clear that these are compound words and not separate variables.

Naming React Components should follow the same convention, in this example we declare a component called MyComponent using PascalCase:

2. Avoid Abbreviations, use full words
When naming a component it is important to avoid abbreviations and instead use the full words that accurately describe the component's purpose.
Abbreviations can be confusing for others who may not be familiar with the project or the context in which the component is being used.
Do:

Don't:

3. A single file per Component
One of the best practices I adhere to daily is using a simple file-per-component structure, where each component is defined in its own separate file. This helps keep the codebase organized and makes it easier to locate specific components when working on larger projects.
An example folder structure:

4. Prefix High-Order Components with “with”
When using Higher-Order Components (HOCs) in React, it’s a common convention to prefix the name of the HOC with the word “with”. This helps make it clear that the component is a HOC and makes the code more readable and maintainable.
Here are some code snippets that demonstrate the use of the “with” prefix for HOCs:
In these examples, the names of the HOCs are prefixed with “with” (i.e. withAuth and withToggle). This makes it clear that these are HOCs and helps make the code more readable and understandable.
By following this convention, you can make your HOCs more consistent and easier to work with, both for yourself and for other developers who may be working with your code.
Because NextJS makes building React apps easier - especially React apps that should have server-side rendering (though it does way more than just take care of that).