DEV Community

Why do React components need to start with capital letters?

Bhat Aasim on September 21, 2024

Why do React components need to start with capital letters? If you’ve ever worked with React, you might have noticed that component names always...
Collapse
 
alexkhotkevich profile image
Alexander

What about const SomeName = "some value" and projects without Babel?

Collapse
 
bhataasim profile image
Bhat Aasim

SomeName simply a variable, not a react component. Capitalization rule will not apply here, because its not being used as a react component here.

Projects without babel, then React.createElement() Api is used Explicitly.

BTW, using Capital letters in Components, helps react to differentiate between Native Elements and custom Components.

Eg.

React.createElement('div'); 
// Interpreted as a native HTML <div> element

React.createElement(MyComponent); 
// Interpreted as a custom React component
Enter fullscreen mode Exit fullscreen mode

If MyComponent is written in lower case (myComponent), React will look for a native HTML element <myComponent> which doesn't exists, causing the app to fail.

Collapse
 
thedcsherman profile image
David Sherman

I’m fairly sure for this they just check whether typeof input is string.

Collapse
 
alexkhotkevich profile image
Alexander

I see the point with createElement, but I still can write lower case functional component on a project without Babel and still get the error. So it's not Babel concern, as your article states

Thread Thread
 
bhataasim profile image
Bhat Aasim

You're absolutely right! The capitalization rule in React isn't tied specifically to Babel, but rather to React itself. While Babel helps by converting JSX into React.createElement() calls.

Thread Thread
 
alexkhotkevich profile image
Alexander

This is not true either since React 17 jsx runtime

Collapse
 
skysung profile image
SkySung

Short and informative thanks!

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks ❣️

Collapse
 
seandinan profile image
Sean Dinan • Edited

That's good to know! Had always assumed it was just a matter of convention, although it would feel very strange to not capitalize a React component at this point :)

Collapse
 
rehan72 profile image
Rehan

Thank you 👍

Collapse
 
bhataasim profile image
Bhat Aasim

You are Welcome 😊

Collapse
 
respect17 profile image
Kudzai Murimi

Ahhhha nice!

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks

Collapse
 
alpastx profile image
Alpesh Bhagwatkar

Short and sweet!

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks

Collapse
 
cmohanc profile image
cmohanc

Fragile tech

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks

Collapse
 
mohit0129 profile image
Mohit

Good information, thanks for providing

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks ❣️

Collapse
 
jojomondag profile image
Josef Nobach

Thanks good to remember!

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks Man

Collapse
 
henriquemsleal profile image
Carlos Henrique Leal

Very good. Thank you!

Collapse
 
bhataasim profile image
Bhat Aasim

Thank You ❣️

Collapse
 
naveed273 profile image
Naveed Ullah

To the point and informative which clears the basic concept, thank you

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks man

Collapse
 
ashishnimrot profile image
ashishnimrot

Could you tell me cons of virtual dom in react js?

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks ❣️

Collapse
 
rohit_raj profile image
Rohit Raj

New information, thank.❤️

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks ❣️

Collapse
 
six51099183 profile image
six

Concise and to the point. I love this!

Collapse
 
bhataasim profile image
Bhat Aasim

Thanks Man ❣️

Collapse
 
princecode profile image
Prince Malongo

Thanks for the insight from the article and the informative comments. I've have learned and it's a good step to go and study more on the topic.

Collapse
 
citronbrick profile image
CitronBrick

On a side note, Kotlin's Composable function components for Android, also start with a capital letter.